diff options
author | Christopher Faylor <me@cgf.cx> | 2002-12-30 22:38:13 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-12-30 22:38:13 +0000 |
commit | f715db84b6d37834078b97bef0d82d61144959f1 (patch) | |
tree | 6df7bfddce51e1b1d3512a74cba1b6a4e2cb41c4 /winsup/cygwin/window.cc | |
parent | 9f3255cee641039f0e48492cc0b81a2d4a2c7f29 (diff) | |
download | cygnal-f715db84b6d37834078b97bef0d82d61144959f1.tar.gz cygnal-f715db84b6d37834078b97bef0d82d61144959f1.tar.bz2 cygnal-f715db84b6d37834078b97bef0d82d61144959f1.zip |
* windows.cc (setitimer): Return ENOSYS on invalid argument.
Diffstat (limited to 'winsup/cygwin/window.cc')
-rw-r--r-- | winsup/cygwin/window.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/window.cc b/winsup/cygwin/window.cc index 80e95a143..55bc369c0 100644 --- a/winsup/cygwin/window.cc +++ b/winsup/cygwin/window.cc @@ -148,7 +148,7 @@ setitimer (int which, const struct itimerval *value, struct itimerval *oldvalue) if (which != ITIMER_REAL) { - set_errno (EINVAL); + set_errno (ENOSYS); return -1; } /* Check if we will wrap */ |