mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-27 16:39:08 +00:00
Fixed bogotification of pseudocode for syscall args by rev.1.53 of
syscalls.master.
This commit is contained in:
parent
266ead86bc
commit
134e06fe71
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38864
@ -37,7 +37,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)kern_sysctl.c 8.4 (Berkeley) 4/14/94
|
||||
* $Id: kern_sysctl.c,v 1.74 1997/12/16 17:40:20 eivind Exp $
|
||||
* $Id: kern_sysctl.c,v 1.75 1998/08/24 08:39:38 dfr Exp $
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
@ -995,7 +995,7 @@ static char bsdi_strings[80]; /* It had better be less than this! */
|
||||
struct getkerninfo_args {
|
||||
int op;
|
||||
char *where;
|
||||
int *size;
|
||||
size_t *size;
|
||||
int arg;
|
||||
};
|
||||
#endif
|
||||
|
@ -31,7 +31,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)subr_prof.c 8.3 (Berkeley) 9/23/93
|
||||
* $Id: subr_prof.c,v 1.26 1998/05/01 16:40:20 bde Exp $
|
||||
* $Id: subr_prof.c,v 1.27 1998/07/14 05:09:46 bde Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -341,8 +341,8 @@ SYSCTL_NODE(_kern, KERN_PROF, prof, CTLFLAG_RW, sysctl_kern_prof, "");
|
||||
#ifndef _SYS_SYSPROTO_H_
|
||||
struct profil_args {
|
||||
caddr_t samples;
|
||||
u_int size;
|
||||
u_int offset;
|
||||
size_t size;
|
||||
size_t offset;
|
||||
u_int scale;
|
||||
};
|
||||
#endif
|
||||
|
@ -36,7 +36,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)sys_generic.c 8.5 (Berkeley) 1/21/94
|
||||
* $Id: sys_generic.c,v 1.39 1998/06/10 10:29:31 dfr Exp $
|
||||
* $Id: sys_generic.c,v 1.40 1998/08/24 08:39:38 dfr Exp $
|
||||
*/
|
||||
|
||||
#include "opt_ktrace.h"
|
||||
@ -76,8 +76,8 @@ static int selscan __P((struct proc *, fd_mask **, fd_mask **, int));
|
||||
#ifndef _SYS_SYSPROTO_H_
|
||||
struct read_args {
|
||||
int fd;
|
||||
char *buf;
|
||||
u_int nbyte;
|
||||
void *buf;
|
||||
size_t nbyte;
|
||||
};
|
||||
#endif
|
||||
/* ARGSUSED */
|
||||
@ -226,8 +226,8 @@ readv(p, uap)
|
||||
#ifndef _SYS_SYSPROTO_H_
|
||||
struct write_args {
|
||||
int fd;
|
||||
char *buf;
|
||||
u_int nbyte;
|
||||
const void *buf;
|
||||
size_t nbyte;
|
||||
};
|
||||
#endif
|
||||
int
|
||||
|
Loading…
Reference in New Issue
Block a user