File: flush.h

package info (click to toggle)
otf2 3.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 29,000 kB
  • sloc: ansic: 92,997; python: 16,977; cpp: 9,057; sh: 6,299; makefile: 238; awk: 54
file content (73 lines) | stat: -rw-r--r-- 1,720 bytes parent folder | download | duplicates (3)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * This file is part of the Score-P software (http://www.score-p.org)
 *
 * Copyright (c) 2009-2013,
 * RWTH Aachen University, Germany
 *
 * Copyright (c) 2009-2013,
 * Gesellschaft fuer numerische Simulation mbH Braunschweig, Germany
 *
 * Copyright (c) 2009-2013,
 * Technische Universitaet Dresden, Germany
 *
 * Copyright (c) 2009-2013,
 * University of Oregon, Eugene, USA
 *
 * Copyright (c) 2009-2013,
 * Forschungszentrum Juelich GmbH, Germany
 *
 * Copyright (c) 2009-2013,
 * German Research School for Simulation Sciences GmbH, Juelich/Aachen, Germany
 *
 * Copyright (c) 2009-2013,
 * Technische Universitaet Muenchen, Germany
 *
 * This software may be modified and distributed under the terms of
 * a BSD-style license.  See the COPYING file in the package base
 * directory for details.
 *
 */


/** @internal
 *
 *  @brief      Default flush callbacks.
 */


#ifndef OTF2_TEST_FLUSH_H
#define OTF2_TEST_FLUSH_H

static OTF2_FlushType
otf2_test_pre_flush( void*         userData,
                     OTF2_FileType fileType,
                     uint64_t      locationId,
                     void*         callerData,
                     bool          final )
{
    return OTF2_TEST_FLUSH_DEFAULT;
}

#ifdef OTF2_TEST_FLUSH_GETTIME

static OTF2_TimeStamp
otf2_test_post_flush( void*         userData,
                      OTF2_FileType fileType,
                      uint64_t      locationId )
{
    return OTF2_TEST_FLUSH_GETTIME();
}

#endif

static OTF2_FlushCallbacks otf2_test_flush_callbacks =
{
    .otf2_pre_flush  = otf2_test_pre_flush,
#ifdef OTF2_TEST_FLUSH_GETTIME
    .otf2_post_flush = otf2_test_post_flush
#else
    .otf2_post_flush = NULL
#endif
};

#endif /* OTF2_TEST_FLUSH_H */