cap_sys.c
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: cap_sys.c,v 1.3 1999/09/07 23:14:19 macgyver Exp $
  3.  *
  4.  * Copyright (c) 1997-8 Andrew G. Morgan   <morgan@linux.kernel.org>
  5.  *
  6.  * This file contains the system calls for getting and setting
  7.  * capabilities
  8.  */
  9. #include "libcap.h"
  10. #define __LIBRARY__
  11. #include <linux/unistd.h>
  12. _syscall2(int, capget,
  13.   cap_user_header_t, header,
  14.   cap_user_data_t, data)
  15. _syscall2(int, capset,
  16.   cap_user_header_t, header,
  17.   const cap_user_data_t, data)
  18. /*
  19.  * $Log: cap_sys.c,v $
  20.  * Revision 1.3  1999/09/07 23:14:19  macgyver
  21.  * Updated capabilities library and model.
  22.  *
  23.  * Revision 1.1.1.1  1999/04/17 22:16:31  morgan
  24.  * release 1.0 of libcap
  25.  *
  26.  * Revision 1.4  1998/06/08 00:14:01  morgan
  27.  * change to accommodate alpha (glibc?)
  28.  *
  29.  * Revision 1.3  1998/05/24 22:54:09  morgan
  30.  * updated for 2.1.104
  31.  *
  32.  * Revision 1.2  1997/04/28 00:57:11  morgan
  33.  * fixes and zefram's patches
  34.  *
  35.  * Revision 1.1  1997/04/21 04:32:52  morgan
  36.  * Initial revision
  37.  *
  38.  */