Changeset a070eff in mainline
- Timestamp:
- 2013-11-12T13:38:22Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4a3892b
- Parents:
- 9ed3e1a
- Location:
- uspace/lib/c
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
r9ed3e1a ra070eff 143 143 generic/net/socket_client.c \ 144 144 generic/net/socket_parse.c \ 145 generic/setjmp.c \ 145 146 generic/stack.c \ 146 147 generic/stacktrace.c \ -
uspace/lib/c/arch/ia32/Makefile.inc
r9ed3e1a ra070eff 34 34 arch/$(UARCH)/src/fibril.S \ 35 35 arch/$(UARCH)/src/tls.c \ 36 arch/$(UARCH)/src/setjmp.S \37 36 arch/$(UARCH)/src/stacktrace.c \ 38 37 arch/$(UARCH)/src/stacktrace_asm.S \ -
uspace/lib/c/include/setjmp.h
r9ed3e1a ra070eff 1 1 /* 2 2 * Copyright (c) 2008 Josef Cejka 3 * Copyright (c) 2013 Vojtech Horky 3 4 * All rights reserved. 4 5 * … … 36 37 #define LIBC_SETJMP_H_ 37 38 38 #include <libarch/fibril.h> 39 40 typedef context_t jmp_buf[1]; 39 /* 40 * We hide the structure to allow smooth inclusion from libposix 41 * as no other types are necessary (and thus no includes are needed). 42 */ 43 struct jmp_buf_interal; 44 typedef struct jmp_buf_interal *jmp_buf; 41 45 42 46 extern int setjmp(jmp_buf env);
Note:
See TracChangeset
for help on using the changeset viewer.