2004-01-07 Andrew Cagney <cagney@redhat.com>

* gdb.base/fileio.c (strerrno): Add "EBUSY".
This commit is contained in:
Andrew Cagney 2004-01-07 16:39:02 +00:00
parent 1c9b8f3352
commit 60ad077b5a
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-01-07 Andrew Cagney <cagney@redhat.com>
* gdb.base/fileio.c (strerrno): Add "EBUSY".
2004-01-07 Andrew Cagney <cagney@redhat.com>
* gdb.base/fileio.c (test_open): Do not pass S_IWUSR to "open"

View File

@ -478,6 +478,9 @@ strerrno (int err)
#endif
#ifdef ENOTEMPTY
case ENOTEMPTY: return "ENOTEMPTY";
#endif
#ifdef EBUSY
case EBUSY: return "EBUSY";
#endif
default: return "E??";
}