2004-01-07 Andrew Cagney <cagney@redhat.com>
* gdb.base/fileio.c (strerrno): Add "EBUSY".
This commit is contained in:
parent
1c9b8f3352
commit
60ad077b5a
2 changed files with 7 additions and 0 deletions
|
@ -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"
|
||||
|
|
|
@ -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??";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue