Skip to content

Commit 78084ac

Browse files
authored
Fix copyright position in sleep script (#181)
Add copyright info to cmake scripts
1 parent 37f5519 commit 78084ac

14 files changed

Lines changed: 38 additions & 4 deletions

.gitlab-ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
2+
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
3+
14
stages:
25
- build
36
- test

bench/runners/redis-runner.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/bin/bash
22

3+
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
4+
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
5+
36
redis-server demos/redis.conf > /dev/null 2>&1 &
47
#fio --filename=fio --size=5MB --rw=randrw --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name=iops-test-job --eta-newline=1 &
58
sleep 1

bench/runners/sleep.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
#!/bin/bash
2+
13
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
24
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
35

4-
#!/bin/bash
5-
66
NB_ITERATIONS=10000000
77
if [ ! -z $1 ]; then
88
NB_ITERATIONS=$1

bench/runners/valgrind.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
#!/bin/bash
2+
13
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
24
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
35

4-
#!/bin/bash
56
#valgrind --leak-check=full \
67
# --show-leak-kinds=all \
78
# --track-origins=yes \

cmake/Cppcheckconfig.cmake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
2+
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
13

24
find_program(CPP_CHECK_COMMAND NAMES cppcheck)
35
if (CPP_CHECK_COMMAND)

cmake/ExtendBuildTypes.cmake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
2+
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
3+
14
SET(GCC_DEBUG_FLAGS "-g -Wall")
25
set(ASAN_FLAGS "-g -fsanitize=address -fsanitize=undefined -fsanitize=leak -fsanitize=float-divide-by-zero -fno-sanitize-recover")
36
set(STACK_FLAGS "-fstack-protector-all")

cmake/FindLibLlvmDemangle.cmake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
2+
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
3+
14
# DAS - Technically, all of this is already specified in the CMakeLists.txt
25
# provided in the LLVM demangling source dir, but I can't be bothered to mock
36
# their add_llvm_component cmake definition

cmake/Findelfutils.cmake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
2+
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
3+
14
# Fetch elfutilities and build them according to the compiler used in the project
25
# The following variables and targets are defined as result :
36
# - ELFUTILS_INCLUDE_LIST

cmake/Findlibcap.cmake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
2+
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
3+
14
add_library(libcap STATIC IMPORTED)
25

36
find_library(LIBCAP_LIBRARY_PATH

cmake/Findlibddprof.cmake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
2+
# This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2021-Present Datadog, Inc.
3+
14
# libddprof : common profiler imported libraries
25
## Associated https://gitlab.ddbuild.io/DataDog/libddprof-build/-/jobs/90384402
36
set(VER_LIBDDPROF "64823667" CACHE STRING "libddprof version")

0 commit comments

Comments
 (0)