Sun Jan 31 05:31:28 2016 UTC ()
we don't keed page count in userland.


(christos)
diff -r1.14 -r1.15 src/external/cddl/osnet/sys/sys/types.h

cvs diff -r1.14 -r1.15 src/external/cddl/osnet/sys/sys/types.h (expand / switch to unified diff)

--- src/external/cddl/osnet/sys/sys/types.h 2016/01/31 05:21:53 1.14
+++ src/external/cddl/osnet/sys/sys/types.h 2016/01/31 05:31:28 1.15
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: types.h,v 1.14 2016/01/31 05:21:53 christos Exp $ */ 1/* $NetBSD: types.h,v 1.15 2016/01/31 05:31:28 christos Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 2009 The NetBSD Foundation, Inc. 4 * Copyright (c) 2009 The NetBSD Foundation, Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to The NetBSD Foundation 7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Andrew Doran. 8 * by Andrew Doran.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -105,27 +105,27 @@ typedef off_t off64_t; @@ -105,27 +105,27 @@ typedef off_t off64_t;
105typedef id_t taskid_t; 105typedef id_t taskid_t;
106typedef id_t projid_t; 106typedef id_t projid_t;
107typedef id_t poolid_t; 107typedef id_t poolid_t;
108typedef id_t zoneid_t; 108typedef id_t zoneid_t;
109typedef id_t ctid_t; 109typedef id_t ctid_t;
110 110
111#define B_FALSE 0 111#define B_FALSE 0
112#define B_TRUE 1 112#define B_TRUE 1
113typedef int boolean_t; 113typedef int boolean_t;
114 114
115typedef longlong_t hrtime_t; 115typedef longlong_t hrtime_t;
116typedef int32_t t_scalar_t; 116typedef int32_t t_scalar_t;
117typedef uint32_t t_uscalar_t; 117typedef uint32_t t_uscalar_t;
118#ifdef _KERNTYPES 118#ifdef _KERNEL
119typedef vsize_t pgcnt_t; 119typedef vsize_t pgcnt_t;
120#endif 120#endif
121typedef u_longlong_t len_t; 121typedef u_longlong_t len_t;
122typedef int major_t; 122typedef int major_t;
123typedef int minor_t; 123typedef int minor_t;
124typedef int o_uid_t; 124typedef int o_uid_t;
125typedef int o_gid_t; 125typedef int o_gid_t;
126typedef struct kauth_cred cred_t; 126typedef struct kauth_cred cred_t;
127typedef uintptr_t pc_t; 127typedef uintptr_t pc_t;
128typedef struct vm_page page_t; 128typedef struct vm_page page_t;
129typedef ushort_t o_mode_t; /* old file attribute type */ 129typedef ushort_t o_mode_t; /* old file attribute type */
130typedef u_longlong_t diskaddr_t; 130typedef u_longlong_t diskaddr_t;
131typedef void *zone_t; 131typedef void *zone_t;