From e86dcb752699725c800ef01c68eb5dc2b8068fac Mon Sep 17 00:00:00 2001 From: "Samuel K. Gutierrez" Date: Tue, 23 Jan 2024 11:10:01 -0700 Subject: [PATCH] Add QV_SCOPE_CREATE_EXCLUSIVE. Signed-off-by: Samuel K. Gutierrez --- include/quo-vadis.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/quo-vadis.h b/include/quo-vadis.h index c0ad5d72..066d1410 100644 --- a/include/quo-vadis.h +++ b/include/quo-vadis.h @@ -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 @@ -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; /**