~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to pstack/linuxthreads.h

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

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