[go: up one dir, main page]

Menu

[408bb9]: / io / io.h  Maximize  Restore  History

Download this file

35 lines (24 with data), 705 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef IO_HEADER
#define IO_HEADER
/***************************************************************************
* io.h
*
* Sat Aug 24 23:54:40 2002
* Copyright 2002 Roman Dementiev
* dementiev@mpi-sb.mpg.de
****************************************************************************/
#include "iobase.h"
#include "syscall_file.h"
#include "mmap_file.h"
#include "simdisk_file.h"
#include "iostats.h"
//! \brief \c \<stxxl\> library namespace
__STXXL_BEGIN_NAMESPACE
disk_queues * disk_queues::instance = NULL;
stats * stats::instance = NULL;
debugmon * debugmon::instance = NULL;
#ifdef COUNT_WAIT_TIME
double wait_time_counter = .0;
#endif
__STXXL_END_NAMESPACE
#endif