[go: up one dir, main page]

Menu

[8f591a]: / io / io.h  Maximize  Restore  History

Download this file

32 lines (23 with data), 671 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
#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;
#ifdef COUNT_WAIT_TIME
double stxxl::wait_time_counter = .0;
#endif
__STXXL_END_NAMESPACE
#endif