mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-23 07:19:06 +08:00
6991c6c926
From-SVN: r69872
13 lines
327 B
C
13 lines
327 B
C
#ifndef GC_PTHREAD_STOP_WORLD_H
|
|
#define GC_PTHREAD_STOP_WORLD_H
|
|
|
|
struct thread_stop_info {
|
|
int signal;
|
|
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
|