diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-25 01:01:09 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-25 11:39:26 +0100 |
commit | 8287b6ffdf2cb631591decb17429701218122259 (patch) | |
tree | dd27e493119b4c80c288bb5eeb3fb91ffaa6733d /trans | |
parent | e5583e10eed68f75e8981571d322b553b784dd5b (diff) |
libtrivfs: improve the mig mutator functions
Previously, the mig mutator functions were in migsupport.c, preventing
them from being inlined into the mig-generated server functions. Put
them in mig-decls.h instead. Rename mutations.h to mig-mutate.h.
This is the naming convention used for pflocal.
* libtrivfs/fsmutations.h: Rename to mig-mutate.h, adopt imports.
* libtrivfs/Makefile: Adopt accordingly.
* libtrivfs/migsupport.c: Rename to mig-decls.h.
* libtrivfs/trivfs.h: Move dynamic classes/buckets declarations to
mig-decls.h, remove superfluous imports.
* exec/execmutations.h: Fix import.
* pfinet/mig-mutate.h: Likewise.
* trans/Makefile: Likewise.
Diffstat (limited to 'trans')
-rw-r--r-- | trans/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trans/Makefile b/trans/Makefile index 90df4790..e74a8692 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -35,7 +35,7 @@ password-LDLIBS = $(LIBCRYPT) password-MIGSFLAGS=\ "-DIO_INTRAN=trivfs_protid_t trivfs_begin_using_protid (io_t)" \ "-DIO_DESTRUCTOR=trivfs_end_using_protid (trivfs_protid_t)" \ - "-DPASSWORD_IMPORTS=import <hurd/trivfs.h>;" + "-DPASSWORD_IMPORTS=import \"../libtrivfs/mig-decls.h\";" include ../Makeconf |