Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .github/benchmarks/misc.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
- group: Micro
name: Micro Benchmarks
bin: micro_benchmarks
hermit_rs_manifest_path: benches/micro/Cargo.toml
command: |
sudo qemu-system-x86_64 \
-enable-kvm \
-cpu host,migratable=no,+invtsc \
-smp 4 \
-m 512M \
-display none \
-serial stdio \
-device isa-debug-exit,iobase=0xf4,iosize=0x04 \
-kernel hermit-loader-x86_64 \
-initrd target/x86_64-unknown-hermit/release/micro_benchmarks
iterations: 25
# - group: Micro
# name: Micro Benchmarks
# bin: micro_benchmarks
# hermit_rs_manifest_path: benches/micro/Cargo.toml
# command: |
# sudo qemu-system-x86_64 \
# -enable-kvm \
# -cpu host,migratable=no,+invtsc \
# -smp 4 \
# -m 512M \
# -display none \
# -serial stdio \
# -device isa-debug-exit,iobase=0xf4,iosize=0x04 \
# -kernel hermit-loader-x86_64 \
# -initrd target/x86_64-unknown-hermit/release/micro_benchmarks
# iterations: 25

- group: Allocations
name: Allocation Benchmarks
Expand Down
2 changes: 1 addition & 1 deletion src/syscalls/tasks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub type Tid = i32;
#[hermit_macro::system]
#[unsafe(no_mangle)]
pub extern "C" fn sys_getpid() -> Tid {
0
unimplemented!()
}

#[cfg(feature = "newlib")]
Expand Down
Loading