Files
clang-p2996/libc/include/setjmp.yaml
Schrodinger ZHU Yifan 6695976d16 Reland "[libc] build fix for sigsetjmp (#137047)" (#137214)
Reland `sigsetjmp` patches with build fixes.

We wrap every target replying on the epilogue library into conditional
checks.

---------

Co-authored-by: Petr Hosek <phosek@google.com>
2025-04-29 09:28:42 -04:00

40 lines
703 B
YAML

header: setjmp.h
header_template: setjmp.h.def
macros: []
types:
- type_name: jmp_buf
enums: []
objects: []
functions:
- name: longjmp
standards:
- stdc
return_type: _Noreturn void
arguments:
- type: jmp_buf
- type: int
- name: setjmp
standards:
- stdc
return_type: int
attributes:
- _Returns_twice
arguments:
- type: jmp_buf
- name: sigsetjmp
standards:
- POSIX
return_type: int
attributes:
- _Returns_twice
arguments:
- type: sigjmp_buf
- type: int
- name: siglongjmp
standards:
- POSIX
return_type: _Noreturn void
arguments:
- type: sigjmp_buf
- type: int