summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/utmpx.h
Commit message (Collapse)AuthorAgeFilesLines
* white space and minor comment cleanup.Christopher Faylor2005-05-021-6/+6
|
* * cygwin.din (utmpxname): Export.Corinna Vinschen2005-03-031-0/+9
| | | | | | | | * syscalls.cc (utmpxname): Create export alias to utmpname. * include/utmpx.h: Define ut_name and ut_xtime if not already defined. (utmpxname): Add prototype. * include/sys/utmp.h: Only define ut_name if not already defined. * include/cygwin/version.h: Bump API minor version.
* * cygwin.din: Add utmpx symbols.Corinna Vinschen2004-12-151-0/+45
* syscalls.cc: Include utmpx.h. Implement utmpx functions as stubs to utmp functions. (copy_ut_to_utx): New static function. (pututline): Change from void to struct utmp * as on Linux. (setutxent): New function. (endutxent): New function. (getutxent): New function. (getutxid): New function. (getutxline): New function. (pututxline): New function. * include/utmpx.h: New file. * include/cygwin/utmp.h: New file. * include/cygwin/version.h: Bump API minor number. * include/sys/utmp.h: Include cygwin/utmp.h. Move stuff common with utmpx functionality there. (pututline): Declare struct utmp *.