Welcome to mirror list, hosted at ThFree Co, Russian Federation.

openbsd_stop_world.h « private « include « libgc - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f423ad5728d27ddf72dae8660f766efda33a27d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef GC_OPENBSD_STOP_WORLD_H
#define GC_OPENBSD_STOP_WORLD_H

#if !defined(GC_OPENBSD_THREADS)
#error openbsd_stop_world.h included without GC_OPENBSD_THREADS defined
#endif

struct thread_stop_info {
    ptr_t stack_ptr;  		/* Valid only when stopped.      	*/
};
    
#endif