summaryrefslogtreecommitdiff
path: root/sdk/recipes/patches/spidermonkey/arm-unknown-riscos-1.8.5/jsnativestack.cpp.p
blob: 0e042a9f766d606e552cb02819f68729f12247d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- js/src/jsnativestack.cpp.orig	2012-11-08 14:53:01.000000000 +0000
+++ js/src/jsnativestack.cpp	2012-11-08 14:53:58.000000000 +0000
@@ -204,7 +204,9 @@
      * FIXME: this function is non-portable;
      * other POSIX systems may have different np alternatives
      */
+#ifndef __riscos__
     pthread_getattr_np(thread, &sattr);
+#endif
 #  endif

     void *stackBase = 0;
@@ -212,7 +214,9 @@
 #  ifdef DEBUG
     int rc =
 #  endif
+#ifndef __riscos__
         pthread_attr_getstack(&sattr, &stackBase, &stackSize);
+#endif
     JS_ASSERT(!rc);
     JS_ASSERT(stackBase);
     pthread_attr_destroy(&sattr);