Skip to content

Commit

Permalink
Add QV_SCOPE_CREATE_EXCLUSIVE. (#71)
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel K. Gutierrez <[email protected]>
  • Loading branch information
samuelkgutierrez authored Jan 23, 2024
1 parent 82122c3 commit 26c935f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions include/quo-vadis.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* -*- Mode: C; c-basic-offset:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2020-2022 Triad National Security, LLC
* Copyright (c) 2020-2024 Triad National Security, LLC
* All rights reserved.
*
* Copyright (c) 2020-2021 Lawrence Livermore National Security, LLC
Expand Down Expand Up @@ -126,7 +126,9 @@ enum {
typedef enum qv_scope_create_hint_e {
// TODO(skg) Enumerate all actual values.
// TODO(skg) Add to Fortran interface.
QV_SCOPE_CREATE_CLOSE = 0
// TODO(skg) Test bitmap operations in Fortran.
QV_SCOPE_CREATE_EXCLUSIVE = 0x00000001,
QV_SCOPE_CREATE_CLOSE = 0x00000002
} qv_scope_create_hint_t;

/**
Expand Down

0 comments on commit 26c935f

Please sign in to comment.