elf_loader 0.14.1

A high-performance, no_std compliant ELF loader and JIT linker for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int main() {
  int res = system("ps -ef | tail");
  printf("res = %d\n", res);
  sleep(2);
  return 0;
}