* errno.cc: Map ERROR_NOACCESS to EFAULT.
This commit is contained in:
parent
181438ea70
commit
427cf50a1a
|
@ -1,3 +1,7 @@
|
|||
Wed Mar 15 20:38:06 2000 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* errno.cc: Map ERROR_NOACCESS to EFAULT.
|
||||
|
||||
Wed Mar 15 14:25:38 2000 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* spawn.cc (spawn_guts): Restore dependency on signal_arrived. It's
|
||||
|
|
|
@ -103,6 +103,7 @@ errmap[] =
|
|||
X (NEGATIVE_SEEK, EINVAL),
|
||||
X (NOT_READY, ENOMEDIUM),
|
||||
X (DISK_FULL, ENOSPC),
|
||||
X (NOACCESS, EFAULT),
|
||||
{ 0, NULL, 0}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue