-
The objective is to spawn n
posix
threads and let each of these n threadsmmap()
filesize/n sized chunks of a file starting from chunksize*i offset in file (where i=thread num). The threads write these mmap-ed chunks to files named filename.txt.thread_num in$PWD
. -
The objective is to allocate a size of memory whose starting address is aligned to a specified value using just the std available library functions, like
malloc()
. -
This is just a simple illustration of counting chars and lines in a stream. The stream can be any file or
STDIN
.Variadic
functions (functions that take variable # of arguments) andgetopt()
,getopt_long()
for parsing command line options and their arguments are also explored.In the makefile,
$(filter-out
pattern
,
text
)
function was used to filter out pattern from text and get a substring of text free from pattern.In addition the program is written in a modular way, probably making it easier to convert these modules into libraries later on if needed. Such modules are the mprint.c (the module for printing), fops.c (the module for buffered file ops).
Usage:
./cnt.out -l|-c [<stream name>]
-c
is for counting chars from <stream name> and-l
is for counting lines.- You can specify the optional <stream name> anywhere after the executable name.
- If <stream name> is not mentioned, input is expected from
STDIN
. - The
-l
and-c
options can be mentioned together as-lc
and they can also be seperately mentioned at the same time, but both will use the same stream i.e there can be only one stream at all times.
./locnt.out --cc[=<streamA>]|--lc[==<streamB>]
- longoptions
--cc
is for counting chars and--lc
is for counting lines. - The optional streams can be different. Either or both of them can be a file or
STDIN
, (STDIN
when no stream is specified)
-
This exercise generates the assembly output of C files in which variables having different storage classes, qualifiers and linkages have been defined. The aim of this ex is to figure out the where these variables are assigned memory in the processes' memory layout.
make
will output the preprocessor output toSTDOUT
in addition to generating assembly output in*.s
files.The storage classes static, auto, register and the volatalile qualifier is explored. Look into the makefile to understand the
CFLAGS
used to generate these output.Knowing the meanings of assembler directives will help you make sense of the assembly output and in figuring out the location of these variables.
NOTE:
those meanings can be found here: https://docs.oracle.com/cd/E26502_01/html/E28388/eoiyg.html -
This excercise illustrates the use of pthread condition variables and pthread mutexes.
This excercise is a solution to: https://leetcode.com/problems/print-in-order/
For better understanding of using pthread related functions lookup
LINUX MAN PAGES
https://linux.die.net/man/ -
This excercise contains a rudimentary generic stack implementation.
Generic implies that it can hold data of any type, even derived ones.
The following are the functions/operations in this data structure:
-
initStack()
- a function which returns a pointer to astruct stack
. -
push(struct stack*, type, data)
- a macro which needsstruct stack
, pointer (look into mstack.h)type
, of items to be pushed in the stack. Eg.int
,int*
,struct struct_name
,float(*)[N]
etc.data
, to be pushed in the stack
push
macro does type checking ofdata
making sure that it of typetype
and then dynamically allocates memory to it and passes this pointer asvoid*
to the actualpush()
of the stack. The stack just keeps this reference and returns it whenevertop()
asks for it and removes this refernce whenpop()
pops it.-
pop(struct stack*)
- a macro that takes astruct stack
pointer and callspop()
of that stack. -
top(struct stack*)
- a macro that takes astruct stack
pointer and callstop()
of that stack.top()
returns avoid
pointer containing the address of a location having data of typetype
(as passed inpush()
).top()
returnsNULL
if the stack is empty.
-
empty(struct stack*)
- a macro that takes astruct stack
pointer and callsempty()
of that stack.empty()
returns 1 if the stack is empty and 0 otherwise.
-
size(struct stack*)
- a macro that takes astruct stack
pointer and calls thesize()
of stack.- returns the number of elements of type
type
in the stack.
- returns the number of elements of type
-
freeStack(struct stack*)
- a function that pops all the elements of the stack and frees up all memory held by the stack.
All the above mentioned operations except
freeStack(struct stack*)
take O(1) time.freeStack(struct stack*)
takes O(n) time.All the macros does type checking for the stack pointer passed to it.
An illustration/example can be found in stacTrial.c file.
NOTE:
make
will build the/any example you include in the current directory along with the stack implementation and will leave the stack obj file (mstack.o
) for reuse in the same machine. -
-
This is an illustration of unit testing in C.
This uses MinUnit, a minimal unit testing framework for C, found here: http://www.jera.com/techinfo/jtns/jtn002.html
And was brought to my notice by: https://www.youtube.com/watch?v=vEICc0zygWQ
Please checkout the site and small video for easily understanding this.
The core idea behind this frame work is just a couple of macros.
mu_assert(message, test)
: which returnsmessage
iftest
evaluates to 0.mu_run_test_ret(test)
: which runstest()
, increments count of tests run and returnsmessage
, if any, returned by it.
The following are my additions:
mu_assert_name(message, test)
: which printsmessage
and the__func__
from which it was invoked, iftest
evaluates to 0.mu_run_test(test)
: which runstest()
, increments count of tests run and also the count of failed tests if it fails.
The
makefile
builds the test binary,test.out
, for you.Make sure to name your test files with
main()
astest_<feature_to_be_tested>.c
.Where
<feature_to_be_tested>.c
is the file containing containing the implementation of the feature/functionality that you want test.
forked from abysamross/C_NIX_Programming
-
Notifications
You must be signed in to change notification settings - Fork 0
pavanetti/C_NIX_Programming
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Brushing up programming in the *nix
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- C 60.2%
- Makefile 30.5%
- Assembly 9.3%