]> Zhao Yanbai Git Server - minix.git/commitdiff
sys_getprivid macro to get the ID of a process' privilege structure.
authorPhilip Homburg <philip@cs.vu.nl>
Mon, 23 Apr 2007 12:00:46 +0000 (12:00 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Mon, 23 Apr 2007 12:00:46 +0000 (12:00 +0000)
Prototype for pci_del_acl.

include/minix/syslib.h

index 70340832c9a2e87a2e2f3b71154d6658fb5e479e..dd716a67773a11cf4f16a66c493e25c41e0e210b 100755 (executable)
@@ -146,6 +146,7 @@ _PROTOTYPE(int sys_segctl, (int *index, u16_t *seg, vir_bytes *off,
 #define sys_getlocktimings(dst)        sys_getinfo(GET_LOCKTIMING, dst, 0,0,0)
 #define sys_getbiosbuffer(virp, sizep) \
        sys_getinfo(GET_BIOSBUFFER, virp, sizeof(*virp), sizep, sizeof(*sizep))
+#define sys_getprivid(nr)      sys_getinfo(GET_PRIVID, 0, 0,0, nr)
 _PROTOTYPE(int sys_getinfo, (int request, void *val_ptr, int val_len,
                                 void *val_ptr2, int val_len2)          );
 
@@ -199,6 +200,7 @@ _PROTOTYPE( void pci_attr_w32, (int devind, int port, u32_t value)  );
 _PROTOTYPE( char *pci_dev_name, (U16_t vid, U16_t did)                 );
 _PROTOTYPE( char *pci_slot_name, (int devind)                          );
 _PROTOTYPE( int pci_set_acl, (struct rs_pci *rs_pci)                   );
+_PROTOTYPE( int pci_del_acl, (endpoint_t proc_nr)                      );
 
 /* Profiling. */
 _PROTOTYPE( int sys_sprof, (int action, int size, int freq, int endpt,