diff options
author | dim <dim@FreeBSD.org> | 2012-04-29 11:04:31 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-04-29 11:04:31 +0000 |
commit | 81a3e2b46db5474df3633b850805e5e981a6cbb4 (patch) | |
tree | 698e4c5df1fba3867e4ca78763a6760206f74894 /sys/sparc64/include | |
parent | 6b0b09e72a82ff0e99c864ca023a9eb62f72d629 (diff) | |
download | FreeBSD-src-81a3e2b46db5474df3633b850805e5e981a6cbb4.zip FreeBSD-src-81a3e2b46db5474df3633b850805e5e981a6cbb4.tar.gz |
Add a convenience macro for the returns_twice attribute, and apply it to
the prototypes of the appropriate functions (getcontext, savectx,
setjmp, sigsetjmp and vfork).
MFC after: 2 weeks
Diffstat (limited to 'sys/sparc64/include')
-rw-r--r-- | sys/sparc64/include/pcb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/include/pcb.h b/sys/sparc64/include/pcb.h index f23c1f2..25a41cc 100644 --- a/sys/sparc64/include/pcb.h +++ b/sys/sparc64/include/pcb.h @@ -55,7 +55,7 @@ struct pcb { #ifdef _KERNEL void makectx(struct trapframe *tf, struct pcb *pcb); -int savectx(struct pcb *pcb); +int savectx(struct pcb *pcb) __returns_twice; #endif #endif /* !LOCORE */ |