<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/kern/sysv_msg.c, branch release/2.2.1_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>1997-03-27T03:07:27+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>1997-03-27T03:07:27+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=1784d64eb85eb63599204bb31b826970b6661e65'/>
<id>1784d64eb85eb63599204bb31b826970b6661e65</id>
<content type='text'>
'RELENG_2_2_1_RELEASE'.

This commit was manufactured to restore the state of the 2.2.1-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_2_2_1_RELEASE'.

This commit was manufactured to restore the state of the 2.2.1-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't depend in the kernel on the gcc feature of doing arithmetic on</title>
<updated>1996-08-31T14:48:13+00:00</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1996-08-31T14:48:13+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=09a8dfa2609f6be79252c94d3b959ec2cf1a0835'/>
<id>09a8dfa2609f6be79252c94d3b959ec2cf1a0835</id>
<content type='text'>
pointers of type `void *'.  Warn about this in future.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
pointers of type `void *'.  Warn about this in future.
</pre>
</div>
</content>
</entry>
<entry>
<title>Somehow managed to miss these four files when converting the SYSV IPC</title>
<updated>1996-01-05T16:38:03+00:00</updated>
<author>
<name>Garrett Wollman</name>
<email>wollman@FreeBSD.org</email>
</author>
<published>1996-01-05T16:38:03+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=511b67b70c493ded62019a8bf48a279ca8bed164'/>
<id>511b67b70c493ded62019a8bf48a279ca8bed164</id>
<content type='text'>
options over to the new style.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
options over to the new style.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update sysv_*.c to get their argument definitions from sysproto.h</title>
<updated>1995-12-15T05:00:31+00:00</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1995-12-15T05:00:31+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=b5d5c0c9347403a164c5765bd145c2e7954a4f1c'/>
<id>b5d5c0c9347403a164c5765bd145c2e7954a4f1c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>A Major staticize sweep.  Generates a couple of warnings that I'll deal</title>
<updated>1995-12-14T08:32:45+00:00</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>1995-12-14T08:32:45+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=87b6de2b76c97cb6262434dcacebf53d0c457cef'/>
<id>87b6de2b76c97cb6262434dcacebf53d0c457cef</id>
<content type='text'>
with later.
A number of unused vars removed.
A number of unused procs removed or #ifdefed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
with later.
A number of unused vars removed.
A number of unused procs removed or #ifdefed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Start including &lt;sys/sysproto.h&gt; to get the correct args structs and</title>
<updated>1995-10-21T19:50:00+00:00</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1995-10-21T19:50:00+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=725db531b81e353adc26fbf8cfe6a252559bcf96'/>
<id>725db531b81e353adc26fbf8cfe6a252559bcf96</id>
<content type='text'>
prototypes for all syscalls.  The args structs are still declared in
comments as in VOP implementation functions.  I don't like the
duplication for this, but several more layers of changes are required
to get it right.  First we need to catch up with 4.4lite2, which uses
macros to handle struct padding.  Then we need to catch up with NetBSD,
which passes the args correctly (as void *).  Then we need to handle
varargs functions and struct padding better.  I think all the details
can be hidden in machine-generated functions so that the args structs
and verbose macros to reference them don't have to appear in the core
sources.

Add prototypes.

Add bogus casts to hide the evil type puns exposed by the previous
steps.  &amp;uap[1] was used to get at the args after the first.  This
worked because only the first arg in *uap was declared.  This broke
when the machine- genenerated args struct declared all the args
(actually it declares extra args in some cases and depends on the
user stack having some accessible junk after the last arg, not to
mention the user args being on the stack.  It isn't possible to
declare a correct args struct for a varargs syscall).  The msgsys(),
semsys() and shmsys() syscall interfaces are BAD because they
multiplex several syscalls that have different types of args.
There was no reason to duplicate this sysv braindamage but now
we're stuck with it.  NetBSD has reimplemented the syscalls properly
as separate syscalls #220-231.

Declare static functions as static in both their prototype and their
implementation (the latter is optional, and this misfeature was used).

Remove gratuitous #includes.

Continue cleaning up new init stuff.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
prototypes for all syscalls.  The args structs are still declared in
comments as in VOP implementation functions.  I don't like the
duplication for this, but several more layers of changes are required
to get it right.  First we need to catch up with 4.4lite2, which uses
macros to handle struct padding.  Then we need to catch up with NetBSD,
which passes the args correctly (as void *).  Then we need to handle
varargs functions and struct padding better.  I think all the details
can be hidden in machine-generated functions so that the args structs
and verbose macros to reference them don't have to appear in the core
sources.

Add prototypes.

Add bogus casts to hide the evil type puns exposed by the previous
steps.  &amp;uap[1] was used to get at the args after the first.  This
worked because only the first arg in *uap was declared.  This broke
when the machine- genenerated args struct declared all the args
(actually it declares extra args in some cases and depends on the
user stack having some accessible junk after the last arg, not to
mention the user args being on the stack.  It isn't possible to
declare a correct args struct for a varargs syscall).  The msgsys(),
semsys() and shmsys() syscall interfaces are BAD because they
multiplex several syscalls that have different types of args.
There was no reason to duplicate this sysv braindamage but now
we're stuck with it.  NetBSD has reimplemented the syscalls properly
as separate syscalls #220-231.

Declare static functions as static in both their prototype and their
implementation (the latter is optional, and this misfeature was used).

Remove gratuitous #includes.

Continue cleaning up new init stuff.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed init functions argument type - caddr_t -&gt; void *. Fixed a couple of</title>
<updated>1995-09-09T18:10:37+00:00</updated>
<author>
<name>David Greenman</name>
<email>dg@FreeBSD.org</email>
</author>
<published>1995-09-09T18:10:37+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4590fd3a2a5539b8a1ce2ad488707123c8b7c8c8'/>
<id>4590fd3a2a5539b8a1ce2ad488707123c8b7c8c8</id>
<content type='text'>
compiler warnings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
compiler warnings.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix several sysinit functions that had the wrong type and unnecessarily</title>
<updated>1995-08-30T00:33:02+00:00</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1995-08-30T00:33:02+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=088f73968c17d27568752b7ecc23e14551297d9a'/>
<id>088f73968c17d27568752b7ecc23e14551297d9a</id>
<content type='text'>
external linkage.

Remove useless comments saying that SYSINIT() does system initialization.

shm.c:
Remove nearly useless comment that gave wrong pseudo-prototypes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
external linkage.

Remove useless comments saying that SYSINIT() does system initialization.

shm.c:
Remove nearly useless comment that gave wrong pseudo-prototypes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Reviewed by:	julian with quick glances by bruce and others</title>
<updated>1995-08-28T09:19:25+00:00</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1995-08-28T09:19:25+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=2b14f991e64ebe31ca31a1a41237061c22a753d0'/>
<id>2b14f991e64ebe31ca31a1a41237061c22a753d0</id>
<content type='text'>
Submitted by:	terry (terry lambert)
This is  a composite of 3 patch sets submitted by terry.
they are:
New low-level init code that supports loadbal modules better
some cleanups in the namei code to help terry in 16-bit character support
some changes to the mount-root code to make it a little more
modular..

NOTE: mounting root off cdrom or NFS MIGHT be broken as I haven't been able
to test those cases..

certainly mounting root of disk still works just fine..
mfs should work but is untested. (tomorrows task)

The low level init stuff includes a total rewrite of init_main.c
to make it possible for new modules to have an init phase by simply
adding an entry to a TEXT_SET (or is it DATA_SET) list. thus a new module can
be added to the kernel without editing any other files other than the
'files' file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Submitted by:	terry (terry lambert)
This is  a composite of 3 patch sets submitted by terry.
they are:
New low-level init code that supports loadbal modules better
some cleanups in the namei code to help terry in 16-bit character support
some changes to the mount-root code to make it a little more
modular..

NOTE: mounting root off cdrom or NFS MIGHT be broken as I haven't been able
to test those cases..

certainly mounting root of disk still works just fine..
mfs should work but is untested. (tomorrows task)

The low level init stuff includes a total rewrite of init_main.c
to make it possible for new modules to have an init phase by simply
adding an entry to a TEXT_SET (or is it DATA_SET) list. thus a new module can
be added to the kernel without editing any other files other than the
'files' file.
</pre>
</div>
</content>
</entry>
<entry>
<title>Eliminate sloppy common-style declarations.  There should be none left for</title>
<updated>1995-07-29T11:44:31+00:00</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1995-07-29T11:44:31+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=28f8db1403052856e6104905b66329de1cfa1dc7'/>
<id>28f8db1403052856e6104905b66329de1cfa1dc7</id>
<content type='text'>
the LINT configuation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the LINT configuation.
</pre>
</div>
</content>
</entry>
</feed>
