This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Add typedef of stack_t for Cygwin


	* libc/include/sys/signal.h (stack_t): Add typedef on Cygwin.
---
 newlib/ChangeLog                 | 4 ++++
 newlib/libc/include/sys/signal.h | 9 +++++++++
 2 files changed, 13 insertions(+)

diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 8ded7ab..24571e5 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+2015-03-30  Jon TURNEY  <jon.turney@dronecode.org.uk>
+
+	* libc/include/sys/signal.h (stack_t): Add typedef on Cygwin.
+
 2015-03-23  Sebastian Huber  <sebastian.huber@embedded-brains.de>
 
 	* libc/include/sys/tree.h: New file.
diff --git a/newlib/libc/include/sys/signal.h b/newlib/libc/include/sys/signal.h
index 7fc30a7..6340884 100644
--- a/newlib/libc/include/sys/signal.h
+++ b/newlib/libc/include/sys/signal.h
@@ -138,6 +138,15 @@ typedef struct sigaltstack {
 
 #elif defined(__CYGWIN__)
 #include <cygwin/signal.h>
+
+/*
+ * Structure used in sigaltstack call.
+ */
+typedef struct sigaltstack {
+  void     *ss_sp;    /* Stack base or pointer.  */
+  int       ss_flags; /* Flags.  */
+  size_t    ss_size;  /* Stack size.  */
+} stack_t;
 #else
 #define SA_NOCLDSTOP 1  /* only value supported now for sa_flags */
 
-- 
2.1.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]