summaryrefslogtreecommitdiff
path: root/libc/include/llvm-libc-macros/linux/sys-wait-macros.h
blob: ad66d050334f1f8fdefc9d7f1f4532e7e24fa499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//===-- Definition of macros from sys/wait.h ------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef __LLVM_LIBC_MACROS_LINUX_SYS_WAIT_MACROS_H
#define __LLVM_LIBC_MACROS_LINUX_SYS_WAIT_MACROS_H

// Wait flags
#define WNOHANG 1    // Do not block
#define WUNTRACED 2  // Report is a child has stopped even if untraced
#define WCONTINUED 8 // Report if a stopped child has been resumed by SIGCONT

// Wait status info macros
#define WTERMSIG(status) (((status)&0x7F))
#define WIFEXITED(status) (WTERMSIG(status) == 0)
#define WEXITSTATUS(status) (((status)&0xFF00) >> 8)
#define WIFSIGNALED(status)                                                    \
  ((WTERMSIG(status) < 0x7F) && (WTERMSIG(status) > 0))

#endif // __LLVM_LIBC_MACROS_LINUX_SYS_WAIT_MACROS_H