rights.c (485B)
1 /* Copyright 1998-1999, Brian J. Swetland. All rights reserved. 2 ** Distributed under the terms of the OpenBLT License 3 */ 4 5 #include "blt/error.h" 6 #include "kernel.h" 7 #include "resource.h" 8 #include "rights.h" 9 10 int right_create(uint32 rsrc_id, uint32 flags) 11 { 12 return ERR_NONE; 13 } 14 15 int right_destroy(uint32 right_id) 16 { 17 return ERR_NONE; 18 } 19 20 int right_revoke(uint32 right_id, uint32 thread_id) 21 { 22 return ERR_NONE; 23 } 24 25 int right_grant(uint32 right_id, uint32 thread_id) 26 { 27 return ERR_NONE; 28 } 29