Browse Source

memory: Add copyright notice for Atmosphere where applicable.

nce_cpp
bunnei 6 years ago
parent
commit
bdf7501e7b
  1. 3
      src/core/hle/kernel/memory/address_space_info.cpp
  2. 3
      src/core/hle/kernel/memory/address_space_info.h
  3. 3
      src/core/hle/kernel/memory/memory_block.h
  4. 3
      src/core/hle/kernel/memory/page_heap.cpp
  5. 3
      src/core/hle/kernel/memory/page_heap.h
  6. 3
      src/core/hle/kernel/memory/slab_heap.h

3
src/core/hle/kernel/memory/address_space_info.cpp

@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
// This file references various implementation details from Atmosphère, an open-source firmware for
// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
#include <array>
#include "common/assert.h"

3
src/core/hle/kernel/memory/address_space_info.h

@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
// This file references various implementation details from Atmosphère, an open-source firmware for
// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
#pragma once
#include "common/common_funcs.h"

3
src/core/hle/kernel/memory/memory_block.h

@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
// This file references various implementation details from Atmosphère, an open-source firmware for
// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
#pragma once
#include "common/alignment.h"

3
src/core/hle/kernel/memory/page_heap.cpp

@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
// This file references various implementation details from Atmosphère, an open-source firmware for
// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
#include "core/core.h"
#include "core/hle/kernel/memory/page_heap.h"
#include "core/memory.h"

3
src/core/hle/kernel/memory/page_heap.h

@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
// This file references various implementation details from Atmosphère, an open-source firmware for
// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
#pragma once
#include <array>

3
src/core/hle/kernel/memory/slab_heap.h

@ -2,6 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
// This file references various implementation details from Atmosphère, an open-source firmware for
// the Nintendo Switch. Copyright 2018-2020 Atmosphère-NX.
#pragma once
#include <atomic>

Loading…
Cancel
Save