Changeset 86d05fae in mainline for libc/include
- Timestamp:
- 2006-03-24T11:05:41Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4f2c821
- Parents:
- a71d9af9
- Location:
- libc/include
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/include/psthread.h
ra71d9af9 r86d05fae 34 34 35 35 #ifndef context_set 36 #define context_set(c, _pc, stack, size, ptls) \37 (c)->pc = (sysarg_t) (_pc); \38 (c)->sp = ((sysarg_t) (stack)) + (size) - SP_DELTA; \36 #define context_set(c, _pc, stack, size, ptls) \ 37 (c)->pc = (sysarg_t) (_pc); \ 38 (c)->sp = ((sysarg_t) (stack)) + (size) - SP_DELTA; \ 39 39 (c)->tls = (sysarg_t) (ptls); 40 40 #endif /* context_set */ … … 43 43 44 44 struct psthread_data { 45 struct psthread_data *self; /* IA32,AMD64 needs to get self address */45 struct psthread_data *self; /* ia32, amd64 needs to get self address */ 46 46 47 47 link_t list; -
libc/include/stdarg.h
ra71d9af9 r86d05fae 45 45 46 46 #endif 47 -
libc/include/stdlib.h
ra71d9af9 r86d05fae 30 30 #define __LIBC__STDLIB_H__ 31 31 32 #include <unistd.h> 32 33 #include <malloc.h> 33 34
Note:
See TracChangeset
for help on using the changeset viewer.
