mirror of git://sourceware.org/git/glibc.git
[BZ #7040]
* sysdeps/unix/sysv/linux/mips/sys/inotify.h: Second parameter of inotify_rm_watch should have type int.
This commit is contained in:
parent
f281f9cfda
commit
1090d6bf10
|
@ -1,3 +1,9 @@
|
||||||
|
2009-02-13 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
[BZ #7040]
|
||||||
|
* sysdeps/unix/sysv/linux/mips/sys/inotify.h: Second parameter of
|
||||||
|
inotify_rm_watch should have type int.
|
||||||
|
|
||||||
2009-02-02 Joseph Myers <joseph@codesourcery.com>
|
2009-02-02 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/mips/bits/shm.h (SHM_EXEC): Define.
|
* sysdeps/unix/sysv/linux/mips/bits/shm.h (SHM_EXEC): Define.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
|
/* Copyright (C) 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
@ -98,7 +98,7 @@ extern int inotify_add_watch (int __fd, const char *__name, uint32_t __mask)
|
||||||
__THROW;
|
__THROW;
|
||||||
|
|
||||||
/* Remove the watch specified by WD from the inotify instance FD. */
|
/* Remove the watch specified by WD from the inotify instance FD. */
|
||||||
extern int inotify_rm_watch (int __fd, uint32_t __wd) __THROW;
|
extern int inotify_rm_watch (int __fd, int __wd) __THROW;
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue