Re: [U-Boot] [PATCH v2 08/16] sandbox: Add a setjmp() implementation

2018-01-09 Thread Heinrich Schuchardt
On 12/04/2017 10:28 PM, Simon Glass wrote: > Add an implementation of setjmp() and longjmp() which rely on the > underlying host C library. Since we cannot know how large the jump buffer > needs to be, pick something that should be suitable and check it at > runtime. At present we need access to th

[U-Boot] [PATCH v2 08/16] sandbox: Add a setjmp() implementation

2017-12-04 Thread Simon Glass
Add an implementation of setjmp() and longjmp() which rely on the underlying host C library. Since we cannot know how large the jump buffer needs to be, pick something that should be suitable and check it at runtime. At present we need access to the underlying struct as well. Signed-off-by: Simon