~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to pstack/linuxthreads.h

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Header$ */
 
2
 
 
3
/*
 
4
 * LinuxThreads specific stuff.
 
5
 */
 
6
 
 
7
#ifndef pstack_linuxthreads_h_
 
8
#define pstack_linuxthreads_h_
 
9
 
 
10
#include        <pthread.h>
 
11
#include        "pstacktrace.h"
 
12
 
 
13
#ifdef __cplusplus
 
14
extern "C" {
 
15
#endif
 
16
 
 
17
/*
 
18
 * Tell other threads to dump stacks...
 
19
 */
 
20
int
 
21
linuxthreads_notify_others(     const int       signotify);
 
22
 
 
23
#ifdef __cplusplus
 
24
}
 
25
#endif
 
26
 
 
27
#endif /* pstack_linuxthreads_h_ */
 
28