[BACK]Return to rump_syscalls.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / rump / librump / rumpkern

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/rump/librump/rumpkern/rump_syscalls.c between version 1.100 and 1.101

version 1.100, 2014/04/27 15:11:23 version 1.101, 2014/06/12 21:42:26
Line 4 
Line 4 
  * System call vector and marshalling for rump.   * System call vector and marshalling for rump.
  *   *
  * DO NOT EDIT-- this file is automatically generated.   * DO NOT EDIT-- this file is automatically generated.
  * created from NetBSD: syscalls.master,v 1.268 2014/04/09 23:55:37 pooka Exp   * created from NetBSD: syscalls.master,v 1.269 2014/06/12 21:41:33 joerg Exp
  */   */
   
 #ifdef RUMP_CLIENT  #ifdef RUMP_CLIENT
Line 2049  rsys_aliases(ftruncate,rump___sysimpl_ft
Line 2049  rsys_aliases(ftruncate,rump___sysimpl_ft
   
 int rump___sysimpl___sysctl(const int *, u_int, void *, size_t *, const void *, size_t);  int rump___sysimpl___sysctl(const int *, u_int, void *, size_t *, const void *, size_t);
 int  int
 rump___sysimpl___sysctl(const int * name, u_int namelen, void * old, size_t * oldlenp, const void * new, size_t newlen)  rump___sysimpl___sysctl(const int * name, u_int namelen, void * oldv, size_t * oldlenp, const void * newv, size_t newlen)
 {  {
         register_t retval[2];          register_t retval[2];
         int error = 0;          int error = 0;
Line 2059  rump___sysimpl___sysctl(const int * name
Line 2059  rump___sysimpl___sysctl(const int * name
         memset(&callarg, 0, sizeof(callarg));          memset(&callarg, 0, sizeof(callarg));
         SPARG(&callarg, name) = name;          SPARG(&callarg, name) = name;
         SPARG(&callarg, namelen) = namelen;          SPARG(&callarg, namelen) = namelen;
         SPARG(&callarg, old) = old;          SPARG(&callarg, oldv) = oldv;
         SPARG(&callarg, oldlenp) = oldlenp;          SPARG(&callarg, oldlenp) = oldlenp;
         SPARG(&callarg, new) = new;          SPARG(&callarg, newv) = newv;
         SPARG(&callarg, newlen) = newlen;          SPARG(&callarg, newlen) = newlen;
   
         error = rsys_syscall(SYS___sysctl, &callarg, sizeof(callarg), retval);          error = rsys_syscall(SYS___sysctl, &callarg, sizeof(callarg), retval);

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.101

CVSweb <webmaster@jp.NetBSD.org>