user-level thread code from http://homepage.cs.uiowa.edu/~jones/opsys/threads/
This commit is contained in:
parent
fcdc22b861
commit
a0999008e0
5 changed files with 598 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -1,7 +1,7 @@
|
|||
CFLAGS=-std=c99 -Wall -g -O2
|
||||
INDENTOPTS=-kr --no-tabs --braces-on-func-def-line --indent-level2
|
||||
|
||||
TARGETS=approximate-pi linked-list mandelbrot threads circular-buffer structs ncurses-pong bit-fuckery bit-fuckery2 checkcheck multibrot bloom wo-lernen lua-foo binsearch test-inline-assembly
|
||||
TARGETS=approximate-pi linked-list mandelbrot threads circular-buffer structs ncurses-pong bit-fuckery bit-fuckery2 checkcheck multibrot bloom wo-lernen lua-foo binsearch test-inline-assembly uiowa-threads-example
|
||||
EXTRAS=mandelbrot.bmp multibrot.png test-inline-assembly.s
|
||||
|
||||
.PHONY: all
|
||||
|
@ -40,3 +40,6 @@ test-inline-assembly: test-inline-assembly.c
|
|||
|
||||
test-inline-assembly.s: test-inline-assembly.c
|
||||
$(CC) -Wall -S -o $@ $<
|
||||
|
||||
uiowa-threads-example: uiowa-threads.o uiowa-threads-example.c
|
||||
$(CC) $(CFLAGS) -o $@ $^
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue