diff options
author | Roland McGrath <roland@gnu.org> | 2001-05-06 00:49:54 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-05-06 00:49:54 +0000 |
commit | aede167cfb66c3c95742f7c3821643591040a56d (patch) | |
tree | e83e78ea4051e36dfad97910368643e2459f91a3 /libdiskfs/extern-inline.c | |
parent | 5b097e8086fde7387f255cb9504c1027e9ff85d2 (diff) | |
download | hurd-aede167cfb66c3c95742f7c3821643591040a56d.tar.gz hurd-aede167cfb66c3c95742f7c3821643591040a56d.tar.bz2 hurd-aede167cfb66c3c95742f7c3821643591040a56d.zip |
2001-04-22 Neal H Walfield <neal@cs.uml.edu>
* Makefile (OTHERSRCS): Add extern-inline.c.
* diskfs.h (DISKFS_EXTERN_INLINE): New macro.
(diskfs_spawn_first_thread): Update prototype to include the
additional parameter, a demuxer.
(diskfs_begin_using_protid_port): Moved and renamed function
begin_using_protid_port from priv.h.
(diskfs_end_using_protid_port): Moved and renamed function
end_using_protid_port from priv.h.
* extern-inline.c: New file.
* fsmutations.h (FILE_INTRAN): Use new function name.
(FILE_DESTRUCTOR): Likewise.
(IO_INTRAN): Likewise.
(IO_DESTRUCTOR): Likewise.
* init-first.c: Include <hurd/ports.h>.
(master_thread_function): Unnamed parameter is now the demuxer.
Use that rather than diskfs_demuxer directly.
(diskfs_spawn_first_thread): New parameter DEMUXER.
* init-main.c (diskfs_init_main): Pass diskfs_demuxer to
diskfs_spawn_first_thread to conform to new semantics.
* priv.h (begin_using_protid_port): Moved to diskfs.h.
(end_using_protid_port): Likewise.
Diffstat (limited to 'libdiskfs/extern-inline.c')
-rw-r--r-- | libdiskfs/extern-inline.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libdiskfs/extern-inline.c b/libdiskfs/extern-inline.c new file mode 100644 index 00000000..0abcc4cc --- /dev/null +++ b/libdiskfs/extern-inline.c @@ -0,0 +1,20 @@ +/* Run time callable functions for extern inlines. + Copyright (C) 2001 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2, or (at + your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#define DISKFS_EXTERN_INLINE + +#include "diskfs.h" |