Fix POST with streams to use chunked encoding, add http-put word
[factor/jcg.git] / vm / os-linux-x86.32.h
blobb458fcbe210d16d0447fdb9fc3c79f8dbf88b485
1 #include <ucontext.h>
3 INLINE void *ucontext_stack_pointer(void *uap)
5 ucontext_t *ucontext = (ucontext_t *)uap;
6 return (void *)ucontext->uc_mcontext.gregs[7];
9 #define UAP_PROGRAM_COUNTER(ucontext) \
10 (((ucontext_t *)(ucontext))->uc_mcontext.gregs[14])