#include <fcntl.h>#include <sys/file.h>#include <sys/param.h>#include <unistd.h>#include "Debug.h"Go to the source code of this file.
Classes | |
| class | NVcontainer |
| struct | NVcontainer::Header |
| struct | NVcontainer::FreeList |
Defines | |
| #define | NVcontainer_LOCKSTACKSIZE 16 |
Typedefs | |
| typedef unsigned long | nvtime_t |
| typedef unsigned long | nvoff_t |
Functions | |
| nvtime_t | nvtime (nvtime_t *nvt) |
|
|
Definition at line 11 of file NVcontainer.h. Referenced by NVcontainer::close(), NVcontainer::get_lock(), NVcontainer::lock(), and NVcontainer::NVcontainer(). |
|
|
|
|
Definition at line 89 of file NVcontainer.cc. References nvtime_t. Referenced by CServer::active_valid(), CServer::groupinfo(), GroupInfo::set(), GroupInfo::setfln(), NVActiveDB::sset(), and CNewsgroup::updateOverview().
00090 {
00091 time_t tm;
00092 nvtime_t nvtm;
00093
00094 time(&tm);
00095 nvtm = tm;
00096 if (nvt)
00097 *nvt = nvtm;
00098
00099 return nvtm;
00100 }
|
1.3.6-20040222