Skip to content

Commit

Permalink
Add missing copyright
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
DieKautz committed Jan 24, 2024
1 parent fa31696 commit 56c1c52
Show file tree
Hide file tree
Showing 14 changed files with 85 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/de.hpi.swa.trufflesqueak.ffi.native/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#
# Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
# Copyright (c) 2021-2024 Oracle and/or its affiliates
#
# Licensed under the MIT License.
#

cmake_minimum_required(VERSION 3.22)
project(de.hpi.swa.trufflesqueak.ffi.native)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
#define SIZEOF_VOID_P 8

//////////// from here on: copied from
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
#include "vmCallback.h"

//////////// from here on: copied from
Expand Down
6 changes: 6 additions & 0 deletions src/de.hpi.swa.trufflesqueak.ffi.native/include/vmCallback.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
#include <setjmp.h>
#include "sqMemoryAccess.h"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
#include <stdlib.h>

#define VM_PROXY_MAJOR 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
package de.hpi.swa.trufflesqueak.nodes.plugins.ffi;

import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
package de.hpi.swa.trufflesqueak.nodes.plugins.ffi;

import com.oracle.truffle.api.CompilerDirectives;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
package de.hpi.swa.trufflesqueak.nodes.plugins.ffi.wrappers;

import de.hpi.swa.trufflesqueak.util.UnsafeUtils;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
package de.hpi.swa.trufflesqueak.nodes.plugins.ffi.wrappers;

import de.hpi.swa.trufflesqueak.util.UnsafeUtils;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
package de.hpi.swa.trufflesqueak.nodes.plugins.ffi.wrappers;

import de.hpi.swa.trufflesqueak.util.UnsafeUtils;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
package de.hpi.swa.trufflesqueak.nodes.plugins.ffi.wrappers;

import com.oracle.truffle.api.interop.InteropLibrary;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
package de.hpi.swa.trufflesqueak.nodes.plugins.ffi.wrappers;

public interface PostPrimitiveCleanup {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
package de.hpi.swa.trufflesqueak.nodes.plugins.ffi.wrappers;

import de.hpi.swa.trufflesqueak.util.UnsafeUtils;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2017-2024 Software Architecture Group, Hasso Plattner Institute
* Copyright (c) 2021-2024 Oracle and/or its affiliates
*
* Licensed under the MIT License.
*/
package de.hpi.swa.trufflesqueak.util;

import com.oracle.truffle.api.CompilerDirectives;
Expand Down

0 comments on commit 56c1c52

Please sign in to comment.