to edit vi options : edit this file:
vi ~/.vimrc
e.g.
colorscheme morning
set nowrap
set smartindent
" set hls!
set ignorecase
Tuesday, June 21, 2005
To update your object files:
Introduction to "make"
- if you changed the source file (.cpp) only, run:
make install - if you change header files, run:
make clobber install {removes all except source files} (or)
make clean install {removes only .o files} - also you can use rm
rm *.o
Introduction to "make"
Monday, June 20, 2005
to create a thread: you have to pass a name (address) of a function to pthread_create that is:
- static
- take void * as argument
- retuns void *
Subscribe to:
Posts (Atom)