-
Notifications
You must be signed in to change notification settings - Fork 22
/
README
41 lines (31 loc) · 832 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
CS3753 (Operating Systems)
Spring 2012
University of Colorado Boulder
Programming Assignment 2
Public Code
By Andy Sayler - 2012
http://www.andysayler.com
With help from:
Junho Ahn - 2012
Adopted from previous code by
Chris Wailes <chris.wailes@gmail.com> - 2010
Wei-Te Chen <weite.chen@colorado.edu> - 2011
Blaise Barney - pthread-hello.c
---Folders---
input - names*.txt input files
handout - Assignment description and documentation
---Executables---
lookup - A basic non-threaded DNS query-er
queueTest - Unit test program for queue
pthread-hello ; A simple threaded "Hello World" program
---Examples---
Build:
make
Clean:
make clean
Lookup DNS info for all names files in input folder:
./lookup input/names*.txt results.txt
Check queue for memory leaks:
valgrind ./queueTest
Run pthread-hello
./pthread-hello