Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 77b2555b52a894a2e39a42e43d993df875c46a6a 20 lines 449 B view raw
1/* 2 * Miguel de Icaza 3 */ 4#ifndef __ASM_INVENTORY_H 5#define __ASM_INVENTORY_H 6 7typedef struct inventory_s { 8 struct inventory_s *inv_next; 9 int inv_class; 10 int inv_type; 11 int inv_controller; 12 int inv_unit; 13 int inv_state; 14} inventory_t; 15 16extern int inventory_items; 17void add_to_inventory (int class, int type, int controller, int unit, int state); 18int dump_inventory_to_user (void *userbuf, int size); 19 20#endif /* __ASM_INVENTORY_H */