Changeset bc1f1c2 in mainline for uspace/lib/libc/arch/ia32/include
- Timestamp:
- 2007-06-28T00:54:12Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 12f91130
- Parents:
- b9641ee
- Location:
- uspace/lib/libc/arch/ia32/include
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/arch/ia32/include/fibril.h
rb9641ee rbc1f1c2 33 33 */ 34 34 35 #ifndef LIBC_ia32_ PSTHREAD_H_36 #define LIBC_ia32_ PSTHREAD_H_35 #ifndef LIBC_ia32_FIBRIL_H_ 36 #define LIBC_ia32_FIBRIL_H_ 37 37 38 38 #include <types.h> -
uspace/lib/libc/arch/ia32/include/thread.h
rb9641ee rbc1f1c2 40 40 typedef struct { 41 41 void *self; 42 void * pst_data;42 void *fibril_data; 43 43 } tcb_t; 44 44 … … 50 50 static inline tcb_t * __tcb_get(void) 51 51 { 52 void * 52 void *retval; 53 53 54 54 asm ("movl %%gs:0, %0" : "=r"(retval));
Note:
See TracChangeset
for help on using the changeset viewer.