-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! add go as depedency for default build target (webg)
- Loading branch information
1 parent
c684ff5
commit 8970938
Showing
2 changed files
with
83 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Examples | ||
|
||
Set ```TARGET``` to run a specific example: | ||
``` | ||
make TARGET=<example> run | ||
``` | ||
|
||
Certain examples requiere ```go``` to be built. | ||
|
||
More examples can be found in [docs/examples#examples](https://docs.opsity/ops/examples#examples). | ||
|
||
Example | Stack | Description | ||
-|-|- | ||
aio | c | | ||
aslr | c | | ||
creat | c | | ||
dup | c | | ||
epoll | c | | ||
eventfd | c | | ||
fadvise | c | | ||
fallocate | c | | ||
fcntl | c | | ||
fst | go | | ||
fs_full | c | | ||
ftrace | c | | ||
futex | c | | ||
futexrobust | c | | ||
getdents | c | | ||
getrandom | c | | ||
hw | c | hello world (dynamic linking) | ||
hws | c | hello world (static linking) | ||
hwg | go | hello world | ||
inotify | c | | ||
io_uring | c | | ||
ktest | c | | ||
mkdir | c | | ||
mmap | c | | ||
netlink | c | | ||
netsock | c | | ||
nullpage | c | | ||
paging | c | | ||
pipe | c | | ||
readv | c | | ||
rename | c | | ||
sandbox | c | | ||
sendfile | c | | ||
shmem | c | | ||
signal | c | | ||
sigoverflow | c | | ||
socketpair | c | | ||
symlink | c | | ||
syslog | c | | ||
thread_test | c | | ||
time | c | | ||
tlbshootdown | c | | ||
tun | c | | ||
udploop | c | | ||
umcg | c | | ||
unixsocket | c | | ||
unlink | c | | ||
vsyscall | c | | ||
web | c | webserver on localhost:8080 (dynamic linking) | ||
webs | c | webserver on localhost:8080 (static linking) | ||
webg | go | webserver on localhost:8080 | ||
write | c | | ||
writev | c | |