Skip to content

Commit

Permalink
Add SPDX license to syscall files
Browse files Browse the repository at this point in the history
Signed-off-by: Manabu Sugimoto <Manabu.Sugimoto@sony.com>
  • Loading branch information
ManaSugi committed Sep 29, 2022
1 parent 92888a3 commit dd46e25
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/aarch64.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", -10026),
("_newselect", -10032),
Expand Down
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/arm.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", 140),
("_newselect", 142),
Expand Down
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/mips.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", 4140),
("_newselect", 4142),
Expand Down
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/mips64.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", -10026),
("_newselect", 5022),
Expand Down
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/powerpc.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", 140),
("_newselect", 142),
Expand Down
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/powerpc64.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", 140),
("_newselect", 142),
Expand Down
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/riscv64.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", -10026),
("_newselect", -10032),
Expand Down
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/s390x.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", -10026),
("_newselect", -10032),
Expand Down
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/x86.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", 140),
("_newselect", 142),
Expand Down
3 changes: 3 additions & 0 deletions libseccomp/src/syscall/x86_64.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-License-Identifier: Apache-2.0 or MIT
//

pub const SYSCALLS: &[(&str, i32)] = &[
("_llseek", -10026),
("_newselect", -10032),
Expand Down

0 comments on commit dd46e25

Please sign in to comment.