mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
14 lines
285 B
C
14 lines
285 B
C
/*
|
|
* Syscall API for capability manipulation
|
|
*
|
|
* Copyright (C) 2009 Bahadir Balban
|
|
*/
|
|
#ifndef __API_CAPABILITY_H__
|
|
#define __API_CAPABILITY_H__
|
|
|
|
/* Capability syscall request types */
|
|
#define CAP_CONTROL_NCAPS 0
|
|
#define CAP_CONTROL_READ_CAPS 1
|
|
|
|
#endif /* __API_CAPABILITY_H__ */
|