~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to pstack/linuxthreads.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

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