summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--attr.c4
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6aa02a5..d43cfe1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1998-10-04 Ben Elliston <bje@cygnus.com>
+
+ * attr.c (pthread_attr_setstackaddr): Remove FIXME comment. Win32
+ does know about ENOSYS after all.
+ (pthread_attr_setstackaddr): Likewise.
+
1998-10-03 Ben Elliston <bje@cygnus.com>
* configure.in: Test for the `_stdcall' keyword. Define `STDCALL'
diff --git a/attr.c b/attr.c
index 1f3f996..418c3e8 100644
--- a/attr.c
+++ b/attr.c
@@ -67,8 +67,6 @@ pthread_attr_setstackaddr(pthread_attr_t *attr,
{
return EINVAL;
}
-
- /* FIXME: it does not look like Win32 permits this. */
return ENOSYS;
}
@@ -80,8 +78,6 @@ pthread_attr_getstackaddr(const pthread_attr_t *attr,
{
return EINVAL;
}
-
- /* FIXME: it does not look like Win32 permits this. */
return ENOSYS;
}