about summary refs log tree commit diff stats
path: root/src/libtools/threads32.h
blob: 00a527d3be9b089300d9b7b1c68e72dfe7e6f37f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __THREADS_32_H_
#define __THREADS_32_H_
#include "box32.h"

typedef struct fake_pthread_mutext_s {
	int __lock;
	unsigned int __count;
  	int __owner;
	int i386__kind;
	int __kind;
	ptr_t real_mutex;
} fake_phtread_mutex_t;
#define KIND_SIGN	0xbad001

#endif //__THREADS_32_H_