aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.mi/non-stop.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.mi/non-stop.c')
-rw-r--r--gdb/testsuite/gdb.mi/non-stop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.mi/non-stop.c b/gdb/testsuite/gdb.mi/non-stop.c
index 67b68aa..79ec562 100644
--- a/gdb/testsuite/gdb.mi/non-stop.c
+++ b/gdb/testsuite/gdb.mi/non-stop.c
@@ -20,11 +20,11 @@
#include <stdlib.h>
#include <pthread.h>
-/* Under OSF 2.0 & 3.0 and HPUX 10, the second arg of pthread_create
+/* Under HPUX 10, the second arg of pthread_create
is prototyped to be just a "pthread_attr_t", while under Solaris it
is a "pthread_attr_t *". Arg! */
-#if defined (__osf__) || defined (__hpux__)
+#if defined (__hpux__)
#define PTHREAD_CREATE_ARG2(arg) arg
#define PTHREAD_CREATE_NULL_ARG2 null_attr
static pthread_attr_t null_attr;