~ubuntu-branches/ubuntu/hardy/libgc/hardy-updates

« back to all changes in this revision

Viewing changes to include/private/pthread_stop_world.h

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Murray
  • Date: 2005-02-03 00:50:53 UTC
  • mto: (3.1.1 etch) (1.2.4 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050203005053-9c0v9r2qcm2g1cfp
Tags: upstream-6.4
ImportĀ upstreamĀ versionĀ 6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef GC_PTHREAD_STOP_WORLD_H
 
2
#define GC_PTHREAD_STOP_WORLD_H
 
3
 
 
4
struct thread_stop_info {
 
5
    int signal;
 
6
    word last_stop_count;       /* GC_last_stop_count value when thread */
 
7
                                /* last successfully handled a suspend  */
 
8
                                /* signal.                              */
 
9
    ptr_t stack_ptr;            /* Valid only when stopped.             */
 
10
};
 
11
    
 
12
#endif