File: pthread_stop_world.h

package info (click to toggle)
libgc 1%3A7.1-9.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 5,708 kB
  • sloc: ansic: 34,852; sh: 9,813; cpp: 914; asm: 361; makefile: 244
file content (11 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (37)
1
2
3
4
5
6
7
8
9
10
11
#ifndef GC_PTHREAD_STOP_WORLD_H
#define GC_PTHREAD_STOP_WORLD_H

struct thread_stop_info {
    word last_stop_count;	/* GC_last_stop_count value when thread	*/
    				/* last successfully handled a suspend	*/
    				/* signal.				*/
    ptr_t stack_ptr;  		/* Valid only when stopped.      	*/
};
    
#endif