Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
containers
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
argo
containers
Commits
0f9d7edd
Commit
0f9d7edd
authored
Feb 25, 2019
by
Swann Perarnau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[doc] add License to repository
Self-explanatory.
parent
21535cb2
Changes
42
Show whitespace changes
Inline
Side-by-side
Showing
42 changed files
with
474 additions
and
1 deletion
+474
-1
AUTHORS
AUTHORS
+3
-0
CONTRIBUTING.markdown
CONTRIBUTING.markdown
+55
-0
LICENSE
LICENSE
+26
-0
src/acl.cpp
src/acl.cpp
+10
-0
src/acl.hpp
src/acl.hpp
+10
-0
src/aggregatelogger.cpp
src/aggregatelogger.cpp
+10
-0
src/aggregatelogger.hpp
src/aggregatelogger.hpp
+10
-0
src/argo_container.cpp
src/argo_container.cpp
+10
-0
src/argo_container.hpp
src/argo_container.hpp
+10
-0
src/argo_nodeos_config.cpp
src/argo_nodeos_config.cpp
+10
-0
src/common.hpp
src/common.hpp
+10
-0
src/container_manager.cpp
src/container_manager.cpp
+10
-0
src/container_manager.hpp
src/container_manager.hpp
+10
-0
src/defaults.hpp
src/defaults.hpp
+10
-0
src/filelogger.cpp
src/filelogger.cpp
+10
-0
src/filelogger.hpp
src/filelogger.hpp
+10
-0
src/headers.hpp
src/headers.hpp
+10
-0
src/ilogger.cpp
src/ilogger.cpp
+10
-0
src/ilogger.hpp
src/ilogger.hpp
+10
-0
src/int_list_parser.cpp
src/int_list_parser.cpp
+10
-0
src/int_list_parser.hpp
src/int_list_parser.hpp
+10
-0
src/iparser.cpp
src/iparser.cpp
+10
-1
src/iparser.hpp
src/iparser.hpp
+10
-0
src/iresource_controller.hpp
src/iresource_controller.hpp
+10
-0
src/log_option_parser.cpp
src/log_option_parser.cpp
+10
-0
src/log_option_parser.hpp
src/log_option_parser.hpp
+10
-0
src/nodeos_exceptions.hpp
src/nodeos_exceptions.hpp
+10
-0
src/resource_locker.cpp
src/resource_locker.cpp
+10
-0
src/resource_locker.hpp
src/resource_locker.hpp
+10
-0
src/resource_ownership.hpp
src/resource_ownership.hpp
+10
-0
src/resource_ownership_set.hpp
src/resource_ownership_set.hpp
+10
-0
src/resource_type.hpp
src/resource_type.hpp
+10
-0
src/stderrlogger.cpp
src/stderrlogger.cpp
+10
-0
src/stderrlogger.hpp
src/stderrlogger.hpp
+10
-0
src/string_parser.cpp
src/string_parser.cpp
+10
-0
src/string_parser.hpp
src/string_parser.hpp
+10
-0
src/syslogger.cpp
src/syslogger.cpp
+10
-0
src/syslogger.hpp
src/syslogger.hpp
+10
-0
src/trace.cpp
src/trace.cpp
+10
-0
src/trace.hpp
src/trace.hpp
+10
-0
src/utils.cpp
src/utils.cpp
+10
-0
src/utils.hpp
src/utils.hpp
+10
-0
No files found.
AUTHORS
0 → 100644
View file @
0f9d7edd
Judicael Zounmevo <zounmevo@gmail.com>
Swann Perarnau <swann@anl.gov>
Kamil Iskra <iskra@mcs.anl.gov>
CONTRIBUTING.markdown
0 → 100644
View file @
0f9d7edd
Contributing to The Project
===========================
The following is a set of guidelines for contributing to this project. These
are guidelines, not rules, so use your best judgement and feel free to propose
changes.
## Commit Messages Styleguide
-
use present tense, imperative mood
-
reference issues and merge requests
-
you can use
[
Gitlab Flavored Markdown
](
https://docs.gitlab.com/ee/user/markdown.html
)
If you want some help, here is a commit template that you can add to your git
configuration. Save it to a
`my-commit-template.txt`
file and use
`git config
commit.template my-config-template.txt`
to use it automatically.
```
# [type] If applied, this commit will... ---->|
# Why this change
# Links or keys to tickets and others
# --- COMMIT END ---
# Type can be
# feature
# fix (bug fix)
# doc (changes to documentation)
# style (formatting, missing semi colons, etc; no code change)
# refactor (refactoring production code)
# test (adding missing tests, refactoring tests; no production code change)
# --------------------
# Remember to
# Separate subject from body with a blank line
# Limit the subject line to 50 characters
# Capitalize the subject line
# Do not end the subject line with a period
# Use the imperative mood in the subject line
# Wrap the body at 72 characters
# Use the body to explain what and why vs. how
# Can use multiple lines with "-" for bullet points in body
# --------------------
```
## Signoff on Contributions:
The project uses the
[
Developer Certificate of
Origin
](
https://developercertificate.org/
)
for copyright and license
management. We ask that you sign-off all of your commits as certification that
you have the rights to submit this work under the license of the project (in
the
`LICENSE`
file) and that you agree to the DCO.
To signoff commits, use:
`git commit --signoff`
.
To signoff a branch after the fact:
`git rebase --signoff`
LICENSE
0 → 100644
View file @
0f9d7edd
Copyright (c) 2019, UChicago Argonne, LLC. All Rights Reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
src/acl.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "acl.hpp"
#include "utils.hpp"
#include <sys/types.h>
...
...
src/acl.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __ACL_H__
#define __ACL_H__
...
...
src/aggregatelogger.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "aggregatelogger.hpp"
Aggregatelogger
::
Aggregatelogger
(
uid_t
ruid
)
:
...
...
src/aggregatelogger.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __AGGREGATELOGGER_HPP__
#define __AGGREGATELOGGER_HPP__
#include "ilogger.hpp"
...
...
src/argo_container.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "argo_container.hpp"
#include <algorithm>
#include <pwd.h>
...
...
src/argo_container.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __COMPUTE_CONTAINER_HPP__
#define __COMPUTE_CONTAINER_HPP__
...
...
src/argo_nodeos_config.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "headers.hpp"
#include "common.hpp"
#include "aggregatelogger.hpp"
...
...
src/common.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __COMMON_HPP__
#define __COMMON_HPP__
...
...
src/container_manager.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "container_manager.hpp"
#include "common.hpp"
#include <sys/mount.h>
...
...
src/container_manager.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __CONTAINER_MANAGER_HPP__
#define __CONTAINER_MANAGER_HPP__
#include "utils.hpp"
...
...
src/defaults.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __DEFAULTS_HPP__
#define __DEFAULTS_HPP__
...
...
src/filelogger.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "filelogger.hpp"
#include "common.hpp"
#include <string>
...
...
src/filelogger.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __FILELOGGER_HPP__
#define __FILELOGGER_HPP__
#include "ilogger.hpp"
...
...
src/headers.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __HEADERS_HPP__
#define __HEADERS_HPP__
...
...
src/ilogger.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "ilogger.hpp"
#include "utils.hpp"
#include <sstream>
...
...
src/ilogger.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __LOGGER_HPP__
#define __LOGGER_HPP__
...
...
src/int_list_parser.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "int_list_parser.hpp"
#include "utils.hpp"
#include <cstdlib>
...
...
src/int_list_parser.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __INT_LIST_PARSER_HPP__
#define __INT_LIST_PARSER_HPP__
#include <string>
...
...
src/iparser.cpp
View file @
0f9d7edd
#include "iparser.hpp"
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
src/iparser.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __IPARSER_HPP__
#define __IPARSER_HPP__
...
...
src/iresource_controller.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __IRESOURCE_CONTROLLER_HPP__
#define __IRESOURCE_CONTROLLER_HPP__
...
...
src/log_option_parser.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "log_option_parser.hpp"
#include "utils.hpp"
...
...
src/log_option_parser.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __LOG_OPTION_PARSER_HPP__
#define __LOG_OPTION_PARSER_HPP__
...
...
src/nodeos_exceptions.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __NODEOS_EXCEPTIONS_HPP__
#define __NODEOS_EXCEPTIONS_HPP__
...
...
src/resource_locker.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "resource_locker.hpp"
#include "utils.hpp"
#include "common.hpp"
...
...
src/resource_locker.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __RESOURCE_LOCKER_HPP__
#define __RESOURCE_LOCKER_HPP__
...
...
src/resource_ownership.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __RESOURCE_OWNERSHIP_HPP__
#define __RESOURCE_OWNERSHIP_HPP__
#include "utils.hpp"
...
...
src/resource_ownership_set.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __RESOURCE_OWNERSHIP_SET_HPP__
#define __RESOURCE_OWNERSHIP_SET_HPP__
#include "resource_ownership.hpp"
...
...
src/resource_type.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __RESOURCE_TYPE_CPP_H__
#define __RESOURCE_TYPE_CPP_H__
...
...
src/stderrlogger.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "stderrlogger.hpp"
#include "common.hpp"
#include <iostream>
...
...
src/stderrlogger.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __STDERRLOGGER_HPP__
#define __STDERRLOGGER_HPP__
#include "ilogger.hpp"
...
...
src/string_parser.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "string_parser.hpp"
#include "utils.hpp"
#include <stdexcept>
...
...
src/string_parser.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __STRING_PARSER_HPP__
#define __STRING_PARSER_HPP__
...
...
src/syslogger.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "syslogger.hpp"
#include <cassert>
#include "utils.hpp"
...
...
src/syslogger.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __SYSLOGGER_HPP__
#define __SYSLOGGER_HPP__
#include "ilogger.hpp"
...
...
src/trace.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "trace.hpp"
#include <cassert>
bitmask_t
__trace_mask
=
0
;
...
...
src/trace.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __TRACE_HPP__
#define __TRACE_HPP__
#include <stdarg.h>
...
...
src/utils.cpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "utils.hpp"
#include <vector>
...
...
src/utils.hpp
View file @
0f9d7edd
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the Argo containers project.
* For more info, see https://xgitlab.cels.anl.gov/argo/containers
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef __UTILS_CPP_H__
#define __UTILS_CPP_H__
#include <vector>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment