mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
d90104f9e0
This way the scheduler doesn't need to plumb the exit status into the waiter. We still plumb the waitee pid though, I don't love it but it can be fixed.
11 lines
373 B
C
11 lines
373 B
C
#pragma once
|
|
|
|
#define PACKED __attribute__ ((packed))
|
|
#define NORETURN __attribute__ ((noreturn))
|
|
#undef ALWAYS_INLINE
|
|
#define ALWAYS_INLINE inline __attribute__ ((always_inline))
|
|
#define NEVER_INLINE __attribute__ ((noinline))
|
|
#define MALLOC_ATTR __attribute__ ((malloc))
|
|
#define PURE __attribute__ ((pure))
|
|
#define WARN_UNUSED_RESULT __attribute__ ((warn_unused_result))
|