git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Framework for exporting system header to user space (#59)
[lunaix-os.git]
/
lunaix-os
/
includes
/
usr
/
lunaix
/
threads.h
1
#ifndef _LUNAIX_UHDR_USR_THREADS_H
2
#define _LUNAIX_UHDR_USR_THREADS_H
3
4
#include "types.h"
5
6
struct uthread_param
7
{
8
void* th_handler;
9
void* arg1;
10
};
11
12
#endif /* _LUNAIX_UHDR_USR_THREADS_H */