Skip to content

Commit

Permalink
svm: rename ebpf.zig to sbpf.zig
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexicon226 committed Jan 14, 2025
1 parent 0011adf commit f2fa77e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/svm/lib.zig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const executable = @import("executable.zig");
pub const ebpf = @import("ebpf.zig");
pub const ebpf = @import("sbpf.zig");
pub const elf = @import("elf.zig");
pub const memory = @import("memory.zig");
pub const syscalls = @import("syscalls.zig");
Expand Down
2 changes: 1 addition & 1 deletion src/svm/memory.zig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const std = @import("std");
const ebpf = @import("ebpf.zig");
const ebpf = @import("sbpf.zig");

pub const PROGRAM_START: u64 = 0x100000000;
pub const STACK_START: u64 = 0x200000000;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/svm/tests.zig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const lib = @import("lib.zig");
const memory = @import("memory.zig");
const Vm = @import("vm.zig").Vm;
const syscalls = @import("syscalls.zig");
const ebpf = @import("ebpf.zig");
const ebpf = @import("sbpf.zig");
const Elf = @import("elf.zig").Elf;

const Executable = lib.Executable;
Expand Down
2 changes: 1 addition & 1 deletion src/svm/vm.zig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const std = @import("std");
const lib = @import("lib.zig");
const ebpf = @import("ebpf.zig");
const ebpf = @import("sbpf.zig");
const memory = @import("memory.zig");

const MemoryMap = memory.MemoryMap;
Expand Down

0 comments on commit f2fa77e

Please sign in to comment.