summaryrefslogtreecommitdiff
path: root/libmachdev/Makefile
AgeCommit message (Collapse)Author
2014-12-11sync ddeJustus Winter
2014-12-07sync dde stuffJustus Winter
2014-11-26sync libmachdevJustus Winter
2014-09-08Revert "do not prevent dynamic linking"Justus Winter
This reverts commit 4e73b89e56369a260e7368cfce0d6b2fc2e0e0a5.
2014-09-07do not prevent dynamic linkingJustus Winter
2014-04-11libmachdev: fix receiver lookupsJustus Winter
Previously, the device definitions were filtered using sed to replace the device_t type with mach_port_send_t to make the device argument of device_open polymorphic. Rather than doing that, which makes it impossible to use translation functions, the definition of device_open has been amended. * libmachdev/Makefile: Remove ourdevice hack that changes device_t to mach_port_send_t. * libmachdev/device.defs (device_open): Make the device parameter polymorphic like it was done in gnumach. * libmachdev/ds_routines.c (port_bucket): Drop static qualifier so that it can be used in the intrans function. (dev_class): Likewise. (ds_*): Fix all device_t receiver lookups. * libmachdev/mig-decls.h: New file. * libmachdev/mig-mutate.h: Add mutators.
2014-04-07libports: fix notify_port_t receiver lookupsJustus Winter
This is a patch that in conjunction with e9687ec4ff525ae4a88314ba4ae97da770bd012f fixes the receiver lookups for the notify_port_t type. * devnode/Makefile (MIGSFLAGS): Use mig-mutate.h. * eth-filter/Makefile: Likewise. * eth-multiplexer/Makefile: Likewise. * libmachdev/Makefile: Likewise. * devnode/mig-mutate.h: New file. * eth-filter/mig-mutate.h: Likewise. * eth-multiplexer/mig-mutate.h: Likewise. * libmachdev/mig-mutate.h: Likewise. * devnode/devnode.c: Adjust accordingly. * eth-filter/filter.c: Likewise. * eth-multiplexer/notify_impl.c: Likewise. * libmachdev/trivfs_server.c: Likewise.
2012-11-25Move DDE to pthreadsRichard Braun
2012-02-22Clean up includesSamuel Thibault
To use the standard hurd Makeconf rules and permit external dde_* build Conflicts: dde_e100/Makefile dde_e1000/Makefile dde_ne2k_pci/Makefile dde_pcnet32/Makefile dde_rtl8139/Makefile
2012-02-19Prevent dynamic linkingSamuel Thibault
2012-02-19Install machdev.hSamuel Thibault
2010-08-01Use BPF to filter the packets to be delivered.Zheng Da
2010-06-21fix port leak in block glue code of libmachdev.Zheng Da
2010-06-14fix compiling problems in libddekit and libmachdev.Zheng Da
2010-06-04support block devices in the DDE library.Zheng Da
2010-06-04convert linux errno to mach in libmachdev.Zheng Da
2010-05-31make glue code of networking more independant.Zheng Da
This change is required for block device drivers. When block device drivers are linked to the glue code, the linker should be able to perform garbage collection and exclude the code of networking from the driver programs.
2010-02-01check in libmachdev.Zheng Da