OpenBSD CVS

CVS log for src/sys/sys/types.h


[BACK] Up to [local] / src / sys / sys

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.49 / (download) - annotate - [select for diffs], Sat Aug 6 13:31:13 2022 UTC (22 months ago) by semarie
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, HEAD
Changes since 1.48: +1 -2 lines
Diff to previous 1.48 (colored)

remove swblk_t type from sys/types.h

- it is currently unused (except in some regress)
- it is non-standard
- it shouldn't have been visible in first place

ok jca@ mpi@ todd@ deraadt@

Revision 1.48 / (download) - annotate - [select for diffs], Sat Feb 9 04:54:11 2019 UTC (5 years, 4 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.47: +3 -3 lines
Diff to previous 1.47 (colored)

major() and minor() are documented as returning unsigned, so do so

ok deraadt@

Revision 1.47 / (download) - annotate - [select for diffs], Sat Feb 4 02:54:33 2017 UTC (7 years, 4 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.46: +1 -12 lines
Diff to previous 1.46 (colored)

Move the typedefs for in_{addr,port}_t from <sys/types.h> to
<netinet/in.h> and <arpa/inet.h>

ok and ports test naddy@ (thanks!)
ok krw@ beck@ millert@

Revision 1.46 / (download) - annotate - [select for diffs], Mon Sep 12 19:41:20 2016 UTC (7 years, 8 months ago) by guenther
Branch: MAIN
Changes since 1.45: +1 -5 lines
Diff to previous 1.45 (colored)

More #include cleanup per POSIX:
 - <sys/types.h>: don't pull in <sys/select.h>
 - <sys/select.h>: don't pull in <sys/time.h>, but rather declare timeval
   and timespec locally
 - <sys/time.h>: *do* always pull in <sys/select.h>
 - <sys/socket.h>: declare timeval if __BSD_VISIBLE for struct splice

Ports testing and fixed by ajacoutot@
ok deraadt@ millert@

Revision 1.45 / (download) - annotate - [select for diffs], Sat Aug 27 05:14:42 2016 UTC (7 years, 9 months ago) by guenther
Branch: MAIN
Changes since 1.44: +1 -2 lines
Diff to previous 1.44 (colored)

qaddr_t is (now) dead

ok deraadt@

Revision 1.44 / (download) - annotate - [select for diffs], Fri Sep 4 23:47:09 2015 UTC (8 years, 9 months ago) by daniel
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.43: +4 -3 lines
Diff to previous 1.43 (colored)

These days pcc defines __GNUC__ and we don't support gcc2. Also needed
for upcoming CompCert port.

Final version of the diff is from kettenis@ with input from jsg@ and tedu@.

ok kettenis@, jsg@, "I agree" millert@

Revision 1.43 / (download) - annotate - [select for diffs], Mon Jul 20 23:55:27 2015 UTC (8 years, 10 months ago) by uebayasi
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.42: +2 -2 lines
Diff to previous 1.42 (colored)

Indent.

Revision 1.42 / (download) - annotate - [select for diffs], Fri Aug 22 23:05:15 2014 UTC (9 years, 9 months ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.41: +3 -1 lines
Diff to previous 1.41 (colored)

POSIX/FreeBSD/NetBSD/Linux/etc agree -- blk[size|cnt]_t is the bomb.

So add the types blksize_t (a.k.a. int32_t) and blkcnt_t (a.k.a.
int64_t). Use blkcnt_t in stat.h since the base type (int64_t) does
not change. blksize_t in stat.h will follow after the tree is audited
for signed issues, since the base type will change from u_int32_t
to a POSIX compliant int32_t.

Guidance and feedback from guenther@

ok millert@

Revision 1.41 / (download) - annotate - [select for diffs], Sat Jul 12 16:25:08 2014 UTC (9 years, 11 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.40: +7 -3 lines
Diff to previous 1.40 (colored)

Tackle the endian.h mess.  Make it so that:
 * you can #include <sys/endian.h> instead of <machine/endian.h>,
   and ditto <endian.h>  (fixes code that pulls in <sys/endian.h> first)

 * those will always export the symbols that POSIX specified for
   <endian.h>, including the new {be,le}{16,32,64}toh() set.  c.f.
	http://austingroupbugs.net/view.php?id=162

   if __BSD_VISIBLE then you also get the symbols that our <machine/endian.h>
   currently exports (ntohs, NTOHS, dlg's bemtoh*, etc)

 * when doing POSIX compiles (not __BSD_VISIBLE), then <netinet/in.h> and
   <arpa/inet.h> will *stop* exporting the extra symbols like BYTE_ORDER
   and betoh*

ok deraadt@

Revision 1.40 / (download) - annotate - [select for diffs], Tue Mar 11 19:45:28 2014 UTC (10 years, 3 months ago) by guenther
Branch: MAIN
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

lint is gone, and the 'lint' conditional was never in the implementation
namespace, so stop changing behavior when it's #defined

ok beck@ krw@

Revision 1.39 / (download) - annotate - [select for diffs], Sat Sep 14 01:35:02 2013 UTC (10 years, 8 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.38: +1 -3 lines
Diff to previous 1.38 (colored)

Snapshots for all archs have been built, so remove the T32 code

Revision 1.38 / (download) - annotate - [select for diffs], Tue Aug 13 05:52:27 2013 UTC (10 years, 10 months ago) by guenther
Branch: MAIN
Changes since 1.37: +3 -1 lines
Diff to previous 1.37 (colored)

Switch time_t, ino_t, clock_t, and struct kevent's ident and data
members to 64bit types.  Assign new syscall numbers for (almost
all) the syscalls that involve the affected types, including anything
with time_t, timeval, itimerval, timespec, rusage, dirent, stat,
or kevent arguments.  Add a d_off member to struct dirent and replace
getdirentries() with getdents(), thus immensely simplifying and
accelerating telldir/seekdir.  Build perl with -DBIG_TIME.

Bump the major on every single base library: the compat bits included
here are only good enough to make the transition; the T32 compat
option will be burned as soon as we've reached the new world are
are happy with the snapshots for all architectures.

DANGER: ABI incompatibility.  Updating to this kernel requires extra
work or you won't be able to login: install a snapshot instead.

Much assistance in fixing userland issues from deraadt@ and tedu@
and build assistance from todd@ and otto@

Revision 1.37 / (download) - annotate - [select for diffs], Mon Jun 17 19:11:54 2013 UTC (10 years, 11 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.36: +6 -2 lines
Diff to previous 1.36 (colored)

Add support for the _POSIX_CPUTIME and _POSIX_THREAD_CPUTIME options,
including CLOCK_{PROCESS,THREAD}_CPUTIME_ID constants and
{clock,pthread}_getcpuclockid() functions.

Worked out at t2k13 with help from tedu@ and matthew@ and testing by aja@
ok matthew@

Revision 1.36 / (download) - annotate - [select for diffs], Tue Jun 11 16:42:18 2013 UTC (11 years ago) by deraadt
Branch: MAIN
Changes since 1.35: +1 -2 lines
Diff to previous 1.35 (colored)

final removal of daddr64_t.  daddr_t has been 64 bit for a long enough
test period; i think 3 years ago the last bugs fell out.
ok otto beck others

Revision 1.35 / (download) - annotate - [select for diffs], Wed Jan 9 12:17:38 2013 UTC (11 years, 5 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.34: +28 -1 lines
Diff to previous 1.34 (colored)

add support for using c99 bool in the kernel based on our stdbool.h
ok deraadt@ millert@ espie@

Revision 1.34 / (download) - annotate - [select for diffs], Mon Dec 10 22:32:00 2012 UTC (11 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.33: +1 -2 lines
Diff to previous 1.33 (colored)

does not need cdefs.h
(it might come back if guenther and i cleanup the endian.h mess)
ok guenther

Revision 1.33 / (download) - annotate - [select for diffs], Sat Sep 15 00:47:09 2012 UTC (11 years, 8 months ago) by guenther
Branch: MAIN
Changes since 1.32: +1 -3 lines
Diff to previous 1.32 (colored)

Improve POSIX/SUS compliance of <netdb.h>, <sys/socket.h>, and <sys/un.h>.

Much ports testing of various versions by naddy@ and jasper@
ok matthew@, miller@

Revision 1.32 / (download) - annotate - [select for diffs], Sat Mar 19 18:26:06 2011 UTC (13 years, 2 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0
Changes since 1.31: +2 -2 lines
Diff to previous 1.31 (colored)

move to 64-bit daddr_t; ports tree will follow i hope

Revision 1.31 / (download) - annotate - [select for diffs], Sun Mar 16 19:42:57 2008 UTC (16 years, 2 months ago) by otto
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.30: +3 -1 lines
Diff to previous 1.30 (colored)

Widen some struct statfs fields to support large filesystem stata
and add some to be able to support statvfs(2). Do the compat dance
to provide backward compatibility.  ok thib@ miod@

Revision 1.30 / (download) - annotate - [select for diffs], Tue Oct 3 19:49:06 2006 UTC (17 years, 8 months ago) by pedro
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.29: +4 -2 lines
Diff to previous 1.29 (colored)

Introduce daddr64_t and use it for physical block numbers
Okay weingart@, "I'm game with putting my name on it" dlg@

Revision 1.29 / (download) - annotate - [select for diffs], Fri Jan 6 18:53:06 2006 UTC (18 years, 5 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.28: +116 -48 lines
Diff to previous 1.28 (colored)

Adapt things to use __type_t instead of _BSD_TYPE_T_
Add new sys/_types.h header
Include machine/_types.h or sys/_types.h where applicable

Revision 1.28 / (download) - annotate - [select for diffs], Tue Dec 13 00:35:23 2005 UTC (18 years, 6 months ago) by millert
Branch: MAIN
Changes since 1.27: +8 -12 lines
Diff to previous 1.27 (colored)

First step in include files overhaul.  Use __FOO_VISIBLE (as defined
in sys/cdefs.h) instead of _FOO_SOURCE.  Also fix several namespace
pollution issues, including the byte order defines.  OK deraadt@

Revision 1.27 / (download) - annotate - [select for diffs], Mon Nov 21 18:16:46 2005 UTC (18 years, 6 months ago) by millert
Branch: MAIN
Changes since 1.26: +2 -34 lines
Diff to previous 1.26 (colored)

Move contents of sys/select.h to sys/selinfo.h in preparation for a
userland-visible sys/select.h.  Consistent with what Net and Free do.
OK deraadt@, tested with full ports build by naddy@.

Revision 1.26 / (download) - annotate - [select for diffs], Tue Jul 13 21:04:29 2004 UTC (19 years, 11 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.25: +3 -3 lines
Diff to previous 1.25 (colored)

Change mode_t and nlink_t from 16bit to 32bit.  This allows us to
use mode_t in syscalls.master and to use mode_t in more places in
the kernel.  It also makes lint much more useful on kernel code.

I've also added a placeholder for st_birthtime to make a UFS2 import
easier at some future date.

Requested by and OK deraadt@

Revision 1.15.6.7 / (download) - annotate - [select for diffs], Tue Jun 8 21:07:30 2004 UTC (20 years ago) by niklas
Branch: SMP
Changes since 1.15.6.6: +1 -1 lines
Diff to previous 1.15.6.6 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored)

sync to head

Revision 1.25 / (download) - annotate - [select for diffs], Tue Jun 8 18:19:00 2004 UTC (20 years ago) by deraadt
Branch: MAIN
CVS Tags: SMP_SYNC_B, SMP_SYNC_A
Changes since 1.24: +1 -2 lines
Diff to previous 1.24 (colored)

fix

Revision 1.24 / (download) - annotate - [select for diffs], Tue Jun 8 18:11:28 2004 UTC (20 years ago) by marc
Branch: MAIN
Changes since 1.23: +4 -1 lines
Diff to previous 1.23 (colored)

pull up cpuid_t define from smp branch.   Kill alpha specific defininition
of cpuid_t.  OK art@ deraadt@

Revision 1.15.6.6 / (download) - annotate - [select for diffs], Thu Feb 19 11:01:35 2004 UTC (20 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.15.6.5: +5 -4 lines
Diff to previous 1.15.6.5 (colored) to branchpoint 1.15 (colored)

Merge of current from two weeks agointo the SMP branch

Revision 1.23 / (download) - annotate - [select for diffs], Thu Dec 11 23:02:30 2003 UTC (20 years, 6 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.22: +2 -1 lines
Diff to previous 1.22 (colored)

Add id_t type as per POSIX and use it for [gs]etpriority(2).
OK henning@ and deraadt@

Revision 1.22 / (download) - annotate - [select for diffs], Thu Dec 11 22:55:22 2003 UTC (20 years, 6 months ago) by millert
Branch: MAIN
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

POSIX says rlim_t should be unsigned so make it u_quad_t.  Also add
POSIX-mandated RLIM_SAVED_MAX and RLIM_SAVED_CUR defines.  On OpenBSD
these are identical to RLIM_INFINITY as allowed by POSIX.  OK deraadt@

Revision 1.21 / (download) - annotate - [select for diffs], Tue Aug 19 23:42:46 2003 UTC (20 years, 9 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

Crank FD_SETSIZE from 256 to 1024 by default.  Almost all users of
static fd_set have been changed to be dynamic or to use poll.
Note that some libraries in ports (specifically gtk) will complain
if clients are built with a different FD_SETSIZE from the library.
deraadt@ OK.

Revision 1.20 / (download) - annotate - [select for diffs], Thu Jun 26 17:07:01 2003 UTC (20 years, 11 months ago) by jolan
Branch: MAIN
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored)

fix typo in comment.  tedu@ ok

Revision 1.15.6.5 / (download) - annotate - [select for diffs], Sat Jun 7 11:09:08 2003 UTC (21 years ago) by ho
Branch: SMP
Changes since 1.15.6.4: +2 -6 lines
Diff to previous 1.15.6.4 (colored) to branchpoint 1.15 (colored)

Sync SMP branch to -current

Revision 1.19 / (download) - annotate - [select for diffs], Mon Jun 2 23:28:22 2003 UTC (21 years ago) by millert
Branch: MAIN
Changes since 1.18: +2 -6 lines
Diff to previous 1.18 (colored)

Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999.  Proofed by myself and Theo.

Revision 1.17.4.1 / (download) - annotate - [select for diffs], Tue Jun 11 03:32:34 2002 UTC (22 years ago) by art
Branch: UBC
Changes since 1.17: +4 -4 lines
Diff to previous 1.17 (colored) next main 1.18 (colored)

Sync UBC branch to -current

Revision 1.15.6.4 / (download) - annotate - [select for diffs], Thu Mar 28 14:52:02 2002 UTC (22 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.15.6.3: +4 -4 lines
Diff to previous 1.15.6.3 (colored) to branchpoint 1.15 (colored)

Merge in -current from roughly a week ago

Revision 1.18 / (download) - annotate - [select for diffs], Thu Mar 14 01:27:14 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: UBC_SYNC_B, UBC_SYNC_A, OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2, OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.17: +4 -4 lines
Diff to previous 1.17 (colored)

First round of __P removal in sys

Revision 1.15.6.3 / (download) - annotate - [select for diffs], Sat Jul 14 10:02:48 2001 UTC (22 years, 11 months ago) by ho
Branch: SMP
Changes since 1.15.6.2: +4 -2 lines
Diff to previous 1.15.6.2 (colored) to branchpoint 1.15 (colored)

Initial import of some SMP code from NetBSD.
Not really working here yet, but there is some work in progress.

Revision 1.15.6.2 / (download) - annotate - [select for diffs], Wed Jul 4 11:00:36 2001 UTC (22 years, 11 months ago) by niklas
Branch: SMP
Changes since 1.15.6.1: +3 -3 lines
Diff to previous 1.15.6.1 (colored) to branchpoint 1.15 (colored)

Merge in -current from two days ago in the SMP branch.
As usual with merges, they do not indicate progress, so do not hold
your breath for working SMP, and do not mail me and ask about the
state of it.  It has not changed.  There is work ongoing, but very, very
slowly.  The commit is done in parts as to not lock up the tree in too
big chunks at a time.

Revision 1.17 / (download) - annotate - [select for diffs], Sat Jun 23 19:43:53 2001 UTC (22 years, 11 months ago) by millert
Branch: MAIN
CVS Tags: UBC_BASE, OPENBSD_3_0_BASE, OPENBSD_3_0
Branch point for: UBC
Changes since 1.16: +3 -3 lines
Diff to previous 1.16 (colored)

Move to 24 bit minor numbers in a backwards compatible manner.
dev_t has been 32 bits for a long long time, now we can use those bits.

Revision 1.15.6.1 / (download) - annotate - [select for diffs], Thu Mar 2 07:04:47 2000 UTC (24 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.15: +29 -25 lines
Diff to previous 1.15 (colored)

Sync with -current

Revision 1.16 / (download) - annotate - [select for diffs], Tue Feb 22 17:29:12 2000 UTC (24 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9, OPENBSD_2_8_BASE, OPENBSD_2_8, OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.15: +29 -25 lines
Diff to previous 1.15 (colored)

Use an _BSD_FOO_T_ type declaration for off_t in machine/ansi.h to allow
off_t to be visible in stdio.h even in strict ansi mode.  This is needed
for ftello()/fseeko() and it allows us to remove the horrible fpos_t hack.

Revision 1.15 / (download) - annotate - [select for diffs], Mon Feb 15 18:53:57 1999 UTC (25 years, 4 months ago) by millert
Branch: MAIN
CVS Tags: kame_19991208, SMP_BASE, OPENBSD_2_6_BASE, OPENBSD_2_6, OPENBSD_2_5_BASE, OPENBSD_2_5
Branch point for: SMP
Changes since 1.14: +2 -1 lines
Diff to previous 1.14 (colored)

add socklen_t

Revision 1.14 / (download) - annotate - [select for diffs], Thu Jan 7 23:38:59 1999 UTC (25 years, 5 months ago) by millert
Branch: MAIN
Changes since 1.13: +1 -6 lines
Diff to previous 1.13 (colored)

move uint*_t to machine/types.h

Revision 1.13 / (download) - annotate - [select for diffs], Thu Jan 7 05:35:22 1999 UTC (25 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.12: +6 -1 lines
Diff to previous 1.12 (colored)

uint*_t types from new POSIX, ick, yuck, bletch; cmetz

Revision 1.12 / (download) - annotate - [select for diffs], Sun Nov 30 18:50:18 1997 UTC (26 years, 6 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4, OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.11: +13 -1 lines
Diff to previous 1.11 (colored)

Move in_addr_t and in_port_t to <sys/types.h> and add sa_family_t
and suseconds_t types for XPG4.2.

Revision 1.11 / (download) - annotate - [select for diffs], Thu Nov 6 01:25:47 1997 UTC (26 years, 7 months ago) by millert
Branch: MAIN
Changes since 1.10: +2 -1 lines
Diff to previous 1.10 (colored)

XPG4.2 compat:
    1) usleep() and ualarm() use useconds_t not u_int
    2) usleep() returns an int

Revision 1.10 / (download) - annotate - [select for diffs], Sun Apr 20 20:47:33 1997 UTC (27 years, 1 month ago) by tholo
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2, OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.9: +12 -2 lines
Diff to previous 1.9 (colored)

Add macros and types needed for POSIX 1003.1b timers

Revision 1.9 / (download) - annotate - [select for diffs], Tue May 28 12:16:28 1996 UTC (28 years ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.8: +0 -8 lines
Diff to previous 1.8 (colored)

thread changes

Revision 1.8 / (download) - annotate - [select for diffs], Sun Apr 21 22:32:15 1996 UTC (28 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.7: +3 -3 lines
Diff to previous 1.7 (colored)

partial sync with netbsd 960418, more to come

Revision 1.7 / (download) - annotate - [select for diffs], Thu Apr 18 21:41:17 1996 UTC (28 years, 1 month ago) by niklas
Branch: MAIN
Changes since 1.6: +11 -8 lines
Diff to previous 1.6 (colored)

Merge of NetBSD 960317

Revision 1.6 / (download) - annotate - [select for diffs], Sun Mar 24 18:07:58 1996 UTC (28 years, 2 months ago) by tholo
Branch: MAIN
Changes since 1.5: +7 -1 lines
Diff to previous 1.5 (colored)

Move thread prototypes back to <sys/proc.h>
Duplicate boolean_t definition in <sys/types.h>, protected by _KERNEL
Only use boolean_t definition in <vm/vm_param.h> when not _KERNEL
Mark latter two with XXX

Revision 1.5 / (download) - annotate - [select for diffs], Sat Mar 23 19:13:11 1996 UTC (28 years, 2 months ago) by tholo
Branch: MAIN
Changes since 1.4: +1 -10 lines
Diff to previous 1.4 (colored)

Moved boolean_t back to vm_param.h; not protected by _KERNEL.  It needs to
be available to userland (libc, libkvm, others), but will break software if
defined in <sys/types.h>.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Mar 19 21:10:49 1996 UTC (28 years, 2 months ago) by mickey
Branch: MAIN
Changes since 1.3: +12 -1 lines
Diff to previous 1.3 (colored)

Merging w/ NetBSD 021796.
speaker upgraded to the current.
some changes to the VM stuff (ie kern_thread.c added and so).

Revision 1.3 / (download) - annotate - [select for diffs], Sun Mar 3 12:12:36 1996 UTC (28 years, 3 months ago) by niklas
Branch: MAIN
Changes since 1.2: +1 -0 lines
Diff to previous 1.2 (colored)

From NetBSD: 960217 merge

Revision 1.2 / (download) - annotate - [select for diffs], Sat Dec 30 08:29:46 1995 UTC (28 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.1: +6 -1 lines
Diff to previous 1.1 (colored)

from netbsd: use memcpy/memset for FD_COPY/FD_ZERO in userland

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:53:30 1995 UTC (28 years, 8 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:53:30 1995 UTC (28 years, 8 months ago) by deraadt
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.