]> Zhao Yanbai Git Server - minix.git/commit
. DS understands publishing and subscribing where keys are in string
authorBen Gras <ben@minix3.org>
Thu, 13 Jul 2006 14:50:23 +0000 (14:50 +0000)
committerBen Gras <ben@minix3.org>
Thu, 13 Jul 2006 14:50:23 +0000 (14:50 +0000)
commit3512a86b445fafbed8c18fb11bb55de2519baf0b
tree821292b4232c2bd56153360528193234cadc4714
parentd40007667c3ab787e9027e07c8548b660ad27ac2
 . DS understands publishing and subscribing where keys are in string
   form. Subscriptions are regular expressions.
 . different types are stored per key; currently u32 and/or string.
   the same key can be referenced (publish, subscribe, check) as any type.
 . notify()s are sent when subscriptions are triggered (publishing or
   updating of matching keys); optionally, a subscribe flag sends
   updates for all matching keys at subscription time, instead of only
   after updates after subscribing
 . all interfacing to ds is in /usr/src/lib/syslib/ds.c.
 . subscribe is ds_subscribe
   publish functions are ds_publish_<type>
   retrieve functions are ds_retrieve_<type> (one-time retrieval of a value)
   check functions are ds_check_<type> (check for updated key caller
      subscribes to not yet checked for, or ESRCH for none)
 . ramdisk driver updated with new ds interface
drivers/memory/memory.c
include/minix/com.h
lib/syslib/Makefile.in
lib/syslib/ds.c [new file with mode: 0644]
lib/syslib/safecopies.c
servers/ds/main.c
servers/ds/proto.h
servers/ds/store.c
servers/ds/store.h
servers/is/dmp.c
servers/is/dmp_ds.c