<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libc/sys/msync.2, branch release/3.5.0_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>2000-06-25T00:20:49+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2000-06-25T00:20:49+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8e878a0310eae754021dbd73ca928eaf7cf6a65c'/>
<id>8e878a0310eae754021dbd73ca928eaf7cf6a65c</id>
<content type='text'>
'RELENG_3_5_0_RELEASE'.

This commit was manufactured to restore the state of the 3.5-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_3_5_0_RELEASE'.

This commit was manufactured to restore the state of the 3.5-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC: introduce .Lb macro to libc manpages</title>
<updated>2000-04-23T17:12:31+00:00</updated>
<author>
<name>Alexey Zelkin</name>
<email>phantom@FreeBSD.org</email>
</author>
<published>2000-04-23T17:12:31+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=835cb69838bf0591014912846c05d3f30e26c062'/>
<id>835cb69838bf0591014912846c05d3f30e26c062</id>
<content type='text'>
Great bunch of $freeBSD$ tags added
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Great bunch of $freeBSD$ tags added
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC: Remove single-space hard sentence breaks.</title>
<updated>2000-03-03T14:59:51+00:00</updated>
<author>
<name>Sheldon Hearn</name>
<email>sheldonh@FreeBSD.org</email>
</author>
<published>2000-03-03T14:59:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=de1daba9700deeaeff61134d963c86b249eb2578'/>
<id>de1daba9700deeaeff61134d963c86b249eb2578</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct wording on range of addresses examined by `msync(2)'.</title>
<updated>1998-07-09T06:16:22+00:00</updated>
<author>
<name>Joseph Koshy</name>
<email>jkoshy@FreeBSD.org</email>
</author>
<published>1998-07-09T06:16:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=2177df3cd26926c5d2e31669906c06430726e793'/>
<id>2177df3cd26926c5d2e31669906c06430726e793</id>
<content type='text'>
PR: 7180
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR: 7180
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a bunch of spelling errors.</title>
<updated>1998-06-04T21:06:07+00:00</updated>
<author>
<name>Steve Price</name>
<email>steve@FreeBSD.org</email>
</author>
<published>1998-06-04T21:06:07+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=32c21313950e1f43b530bf8e9235461ef05f4ad8'/>
<id>32c21313950e1f43b530bf8e9235461ef05f4ad8</id>
<content type='text'>
PR:		6856
Submitted by:	Josh Gilliam &lt;josh@quick.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR:		6856
Submitted by:	Josh Gilliam &lt;josh@quick.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert caddr_t --&gt; void * for sys/mman.h functions.</title>
<updated>1997-12-31T01:22:01+00:00</updated>
<author>
<name>Alexander Langer</name>
<email>alex@FreeBSD.org</email>
</author>
<published>1997-12-31T01:22:01+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7167d5b04c9a3866f3326fdb953ee349a70d3aa9'/>
<id>7167d5b04c9a3866f3326fdb953ee349a70d3aa9</id>
<content type='text'>
mlock, mmap, mprotect, msync, munlock, and munmap are defined by
POSIX as taking void *.  The const modifier has been added to
mlock, munlock, and mprotect as the standard dictates.

minherit comes from OpenBSD and has been updated to conform with
their recent change to void *.

madvise and mincore are not defined by POSIX, but their arguments
have been modified to be consistent with the POSIX-defined functions.
mincore takes a const pointer, but madvise does not due to the
MADV_FREE case.

Discussed with:	bde
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
mlock, mmap, mprotect, msync, munlock, and munmap are defined by
POSIX as taking void *.  The const modifier has been added to
mlock, munlock, and mprotect as the standard dictates.

minherit comes from OpenBSD and has been updated to conform with
their recent change to void *.

madvise and mincore are not defined by POSIX, but their arguments
have been modified to be consistent with the POSIX-defined functions.
mincore takes a const pointer, but madvise does not due to the
MADV_FREE case.

Discussed with:	bde
</pre>
</div>
</content>
</entry>
<entry>
<title>Document MS_SYNC.</title>
<updated>1997-12-30T03:26:15+00:00</updated>
<author>
<name>Alexander Langer</name>
<email>alex@FreeBSD.org</email>
</author>
<published>1997-12-30T03:26:15+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=fd630dd1cc54056d222b344fed41e6c4f9671bdb'/>
<id>fd630dd1cc54056d222b344fed41e6c4f9671bdb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from Lite2 onto mainline -</title>
<updated>1997-03-11T11:35:56+00:00</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1997-03-11T11:35:56+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=5faf00b5dad12a889b893ee60c054a0271e468e2'/>
<id>5faf00b5dad12a889b893ee60c054a0271e468e2</id>
<content type='text'>
  - add undelete() and undelete.2 (requires libc minor bump some time)
  - man page updates
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  - add undelete() and undelete.2 (requires libc minor bump some time)
  - man page updates
</pre>
</div>
</content>
</entry>
<entry>
<title>Sort cross references.</title>
<updated>1997-01-20T23:23:22+00:00</updated>
<author>
<name>Wolfram Schneider</name>
<email>wosch@FreeBSD.org</email>
</author>
<published>1997-01-20T23:23:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=75141cc9877bd4c86b39c602f68ae5dc205cefdb'/>
<id>75141cc9877bd4c86b39c602f68ae5dc205cefdb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor mdoc fixes in msync.2 and munmap.2.</title>
<updated>1997-01-11T23:33:18+00:00</updated>
<author>
<name>Mike Pritchard</name>
<email>mpp@FreeBSD.org</email>
</author>
<published>1997-01-11T23:33:18+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f111d9977ffdd21aea06534072d0cc8fc6d98ab6'/>
<id>f111d9977ffdd21aea06534072d0cc8fc6d98ab6</id>
<content type='text'>
Add RETURN VALUES and ERRORS sections to mincore.

Closes PR# 1493.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add RETURN VALUES and ERRORS sections to mincore.

Closes PR# 1493.
</pre>
</div>
</content>
</entry>
</feed>
