Skip to content

Commit 26c935f

Browse files
Add QV_SCOPE_CREATE_EXCLUSIVE. (#71)
Signed-off-by: Samuel K. Gutierrez <[email protected]>
1 parent 82122c3 commit 26c935f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

include/quo-vadis.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* -*- Mode: C; c-basic-offset:4; indent-tabs-mode:nil -*- */
22
/*
3-
* Copyright (c) 2020-2022 Triad National Security, LLC
3+
* Copyright (c) 2020-2024 Triad National Security, LLC
44
* All rights reserved.
55
*
66
* Copyright (c) 2020-2021 Lawrence Livermore National Security, LLC
@@ -126,7 +126,9 @@ enum {
126126
typedef enum qv_scope_create_hint_e {
127127
// TODO(skg) Enumerate all actual values.
128128
// TODO(skg) Add to Fortran interface.
129-
QV_SCOPE_CREATE_CLOSE = 0
129+
// TODO(skg) Test bitmap operations in Fortran.
130+
QV_SCOPE_CREATE_EXCLUSIVE = 0x00000001,
131+
QV_SCOPE_CREATE_CLOSE = 0x00000002
130132
} qv_scope_create_hint_t;
131133

132134
/**

0 commit comments

Comments
 (0)