aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/fsync
Commit message (Collapse)AuthorAgeFilesLines
* Correct some style nits that I have mistakenly submitted asXin LI2005-01-261-9/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | suggestions which result in the last revision[*]: - style(9) and sysexits(3) suggests that we use EX_* as exit values, instead of some other values like those returned from a system call as errno. Additionally, follow Ruslan's suggestion about style(9) and other style improvements: - Since open(2) says that it returns -1 on errors, explicitly determine whether it is returning -1 rather than whether the return value is less than zero. - Only set rval when there is no previous error. This distinguishes the first error that occours. - Use exit() in favor of return in main(), this is suggested in old style(9), while the evolve has fade the suggestion. - Add some NOTREACHED comments. - Add blank line after first { because no local variables in usage() Thanks to Ruslan for his tireless explaining of the code standards and knowledge of the history of style(9). [*] Pointy hat to: me Submitted by: ru (with some minor changes) Discussed with: ru, ssouhlal Notes: svn path=/head/; revision=140865
* Document the recent fsync(1) changes.Suleiman Souhlal2005-01-261-1/+6
| | | | | | | | | Requested by: delphij Reviewed by: simon, ru Approved by: grehan (mentor) Notes: svn path=/head/; revision=140848
* In case of error, return errno, instead of 1.Suleiman Souhlal2005-01-261-2/+3
| | | | | | | | | Suggested by: delphij Reviewed by: delphij Approved by: grehan (mentor) Notes: svn path=/head/; revision=140847
* - Continue, in case of error.Suleiman Souhlal2005-01-252-7/+15
| | | | | | | | | | - Add WARNS?= 6 Submitted by: Liam J. Foy <liamfoy@gmail.com> Approved by: stefanf, grehan (mentor) Notes: svn path=/head/; revision=140811
* Consistently use FBSDIDDavid E. O'Brien2002-06-301-2/+2
| | | | Notes: svn path=/head/; revision=99112
* Remove leaf node WARNS?=2 (that mainly I added). This shouldMark Murray2002-02-081-1/+0
| | | | | | | help the GCC3 transition and CURRENT in general. Notes: svn path=/head/; revision=90415
* MFS: in HISTORY section, fix release number of first appearanceSheldon Hearn2001-08-011-1/+1
| | | | Notes: svn path=/head/; revision=80898
* Set WARNS=2 on programs that compile cleanly with it; add $FreeBSD$Dima Dorfman2001-06-301-0/+1
| | | | | | | | | where necessary. Submitted by: Mike Barcroft <mike@q9media.com> Notes: svn path=/head/; revision=79011
* Include missing header files which define functions for which gcc hasDima Dorfman2001-06-241-0/+1
| | | | | | | | | builtins (e.g., exit). Submitted by: Mike Barcroft <mike@q9media.com> Notes: svn path=/head/; revision=78717
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68963
* Avoid the need to capitalize an extraneous argument to the Nm macroSheldon Hearn2000-07-241-5/+8
| | | | | | | | | and be more precise about the handling of command-line arguments. Reviewed by: ps Notes: svn path=/head/; revision=63819
* Typos and spelling fixes.Paul Saab2000-07-242-6/+9
| | | | | | | Submitted by: charnier Notes: svn path=/head/; revision=63812
* Oops. fsync(8) should have been fsync(1). (repo-copied by peter)Paul Saab2000-07-192-3/+2
| | | | | | | Change reference from update(4) to syncer(4). Notes: svn path=/head/; revision=63500
* Add fsync(8). This becomes useful with the advent of MAP_NOSYNC etc.Paul Saab2000-07-193-0/+123
Reviewed by: peter Notes: svn path=/head/; revision=63499