All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/3] Add header file lapi/signal.h
@ 2019-02-20 15:34 Daniel =?unknown-8bit?q?D=C3=ADaz?=
  2019-02-20 15:34 ` [LTP] [PATCH 2/3] syscalls/sighold02: Include lapi/signal.h for __SIGRT{MIN, MAX} Daniel =?unknown-8bit?q?D=C3=ADaz?=
  2019-02-20 15:34 ` [LTP] [PATCH 3/3] syscalls/ptrace05: " Daniel =?unknown-8bit?q?D=C3=ADaz?=
  0 siblings, 2 replies; 5+ messages in thread
From: Daniel =?unknown-8bit?q?D=C3=ADaz?= @ 2019-02-20 15:34 UTC (permalink / raw)
  To: ltp

Some libc implementations might differ in the definitions they
include. Exempli gratia: MUSL does not define __SIGRTMAX nor
__SIGRTMIN.

This header covers those differences for all tests that
require those definitions.

Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org>
---
 include/lapi/signal.h | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 include/lapi/signal.h

diff --git a/include/lapi/signal.h b/include/lapi/signal.h
new file mode 100644
index 000000000..d22965a94
--- /dev/null
+++ b/include/lapi/signal.h
@@ -0,0 +1,24 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (c) 2019 Linaro Limited. All rights reserved.
+ * Author: Daniel Díaz <daniel.diaz@linaro.org>
+ */
+
+#ifndef LAPI_SIGNAL_H
+#define LAPI_SIGNAL_H
+
+#include <signal.h>
+
+/*
+ * Some libc implementations might differ in the definitions they include. This
+ * covers those differences for all tests to successfully build.
+ */
+
+#ifndef __SIGRTMIN
+# define __SIGRTMIN 32
+#endif
+#ifndef __SIGRTMAX
+# define __SIGRTMAX (_NSIG - 1)
+#endif
+
+#endif
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-02-20 16:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-20 15:34 [LTP] [PATCH 1/3] Add header file lapi/signal.h Daniel =?unknown-8bit?q?D=C3=ADaz?=
2019-02-20 15:34 ` [LTP] [PATCH 2/3] syscalls/sighold02: Include lapi/signal.h for __SIGRT{MIN, MAX} Daniel =?unknown-8bit?q?D=C3=ADaz?=
2019-02-20 15:34 ` [LTP] [PATCH 3/3] syscalls/ptrace05: " Daniel =?unknown-8bit?q?D=C3=ADaz?=
2019-02-20 16:33   ` Petr Vorel
2019-02-20 16:48     ` Daniel =?unknown-8bit?q?D=C3=ADaz?=

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.