<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/include/Makefile, branch release/2.2.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F2.2.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F2.2.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>1996-10-17T18:44:56Z</updated>
<entry>
<title>Add back netns</title>
<updated>1996-10-17T18:44:56Z</updated>
<author>
<name>Jordan K. Hubbard</name>
<email>jkh@FreeBSD.org</email>
</author>
<published>1996-10-17T18:44:56Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=cf3c4df72dbd3a64cccf5064b546f0116502ff57'/>
<id>urn:sha1:cf3c4df72dbd3a64cccf5064b546f0116502ff57</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed CLEANFILES.  osreldate was missing.</title>
<updated>1996-09-20T13:42:26Z</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1996-09-20T13:42:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=976cca3578e512b6d4ed3dbb3ec17afa6e3e5bf3'/>
<id>urn:sha1:976cca3578e512b6d4ed3dbb3ec17afa6e3e5bf3</id>
<content type='text'>
Cleaned up LDIRS line.
</content>
</entry>
<entry>
<title>install rpc header files</title>
<updated>1996-09-01T17:54:25Z</updated>
<author>
<name>Adam David</name>
<email>adam@FreeBSD.org</email>
</author>
<published>1996-09-01T17:54:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a2480c3cfdb822ebe85f752a8eadeb7df8861a95'/>
<id>urn:sha1:a2480c3cfdb822ebe85f752a8eadeb7df8861a95</id>
<content type='text'>
</content>
</entry>
<entry>
<title>echo -&gt; ${ECHO}</title>
<updated>1996-08-30T19:37:14Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1996-08-30T19:37:14Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=1133312c37e854019422d2ec2408781bee1830d1'/>
<id>urn:sha1:1133312c37e854019422d2ec2408781bee1830d1</id>
<content type='text'>
do the rm -rf and ln -s in two seperate commands to allow a fork/exec
without a "sh -c" in the middle.

Submitted by: bde
</content>
</entry>
<entry>
<title>Clean up include Makefile:</title>
<updated>1996-08-29T19:57:48Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1996-08-29T19:57:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=56de53f256276bbe45cd61ee41f51b30ac47060f'/>
<id>urn:sha1:56de53f256276bbe45cd61ee41f51b30ac47060f</id>
<content type='text'>
 - use .for loops instead of shell for loops. This means we can be
   shown what is happening while it's going, rather than some pacifier
   "echo" statement.
 - use "${INSTALL} -C", nuke the "cmp -s" hack
 - for "copies" mode,  the include files are no longer touched each time
   the world is built. (ie: no rm -rf.  symlinks are removed, mtree builds
   the new dirs or confirms the existing ones)
 - osreldate.h is build in the local dir and conditionally installed,
   rather than built in /usr/include and either renamed or deleted.
</content>
</entry>
<entry>
<title>Submitted by: John Birrell &lt;cimaxp1!jb@werple.net.au&gt;</title>
<updated>1996-08-20T08:22:01Z</updated>
<author>
<name>Julian Elischer</name>
<email>julian@FreeBSD.org</email>
</author>
<published>1996-08-20T08:22:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=0f7d684755aefbcfd70b45d24efc2d39bc505c4c'/>
<id>urn:sha1:0f7d684755aefbcfd70b45d24efc2d39bc505c4c</id>
<content type='text'>
Here are the diffs for libc_r to get it one step closer to P1003.1c
These make most of the thread/mutex/condvar structures opaque to the
user. There are three functions which have been renamed with _np
suffixes because they are extensions to P1003.1c (I did them for JAVA,
which needs to suspend/resume threads and also start threads suspended).

I've created a new header (pthread_np.h) for the non-POSIX stuff.

The egrep tags stuff in /usr/src/lib/libc_r/Makefile that I uncommented
doesn't work. I think its best to delete it. I don't think libc_r needs
tags anyway, 'cause most of the source is in libc which does have tags.

also:

Here's the first batch of man pages for the thread functions.
The diff to /usr/src/lib/libc_r/Makefile removes some stuff that was
inherited from /usr/src/lib/libc/Makefile that should only be done with
libc.

also:

I should have sent this diff with the pthread(3) man page.
It allows people to type

make -DWANT_LIBC_R world

to get libc_r built with the rest of the world. I put this in the
pthread(3) man page.  The default is still not to build libc_r.


also:
The diff attached adds a pthread(3) man page to /usr/src/share/man/man3.
The idea is that without libc_r installed, this man page will give people
enough info to know that they have to build libc_r.
</content>
</entry>
<entry>
<title>Create FreeBSD copyright (c comment) for OS version</title>
<updated>1996-08-04T22:34:23Z</updated>
<author>
<name>Wolfram Schneider</name>
<email>wosch@FreeBSD.org</email>
</author>
<published>1996-08-04T22:34:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=7b2dfbf801af43312d4620bd6447c09637d0dea4'/>
<id>urn:sha1:7b2dfbf801af43312d4620bd6447c09637d0dea4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add netatalk symlink, ifconfig not compiled in other case</title>
<updated>1996-07-09T15:48:20Z</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>1996-07-09T15:48:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=149fed77191646ee25506e07de066b26a550d877'/>
<id>urn:sha1:149fed77191646ee25506e07de066b26a550d877</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add `netkey' to list of kernel directories to include in /usr/include.</title>
<updated>1996-06-15T18:05:36Z</updated>
<author>
<name>Garrett Wollman</name>
<email>wollman@FreeBSD.org</email>
</author>
<published>1996-06-15T18:05:36Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=c72c7259e5a85b46634ed73571c8135b579b902b'/>
<id>urn:sha1:c72c7259e5a85b46634ed73571c8135b579b902b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Install pccard includes.</title>
<updated>1996-06-04T21:30:35Z</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>1996-06-04T21:30:35Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=c9c3e92c9501b1908e9b7efb9fc4e74dfd1b68e4'/>
<id>urn:sha1:c9c3e92c9501b1908e9b7efb9fc4e74dfd1b68e4</id>
<content type='text'>
</content>
</entry>
</feed>
