code.cpp:126: error: invalid operands of types ‘const char [5]’ and ‘const char [2]’ to binary ‘operator+’
message = string("DATA" + "\n");
to
message = string("DATA\n");
Thursday, October 21, 2010
Thursday, September 23, 2010
tar
Making a tar file (from http://web.cecs.pdx.edu/~suhui/classes/cs201/inst-submit.html)
Below is an example that creates a tar file for email submission. Assume that your CS login name is "john". First, you will create the directory "john-A1" (say, under /u/john/cs201) and copy all the files and directories to be submitted into the directory /u/john/cs201/john-A1/. Below shows a screen shot of making the tar ball, assuming that you've created the directory for submission in /u/john/cs201/john-A1 and you are at /u/john/cs201/.
/u/john/cs201/> ls john-A1/
Makefile test.c typescript
/u/john/cs201/> tar cvf john-A1.tar john-A1/*
john-A1/Makefile
john-A1/test.c
john-A1/typescript
/u/john/cs201/> ls -l john-A1.tar
-rw------- 1 john them 10240 Mar 31 10:00 john-A1.tar
Related commands:
1. To verify the content of a tar file, say "john-A1.tar", do the following:
tar tvf john-A1.tar
Note this command does not extract files from john-A1.tar, but rather it shows what're inside it. This is very useful before you actually extract a tar file.
2. To untar a tar file, say "john-A1.tar", do the following:
tar xvf john-A1.tar
This will create the directory "john" with all the files that are inside it. Warning: whatever files and directories in john-A1.tar will overwrite existing ones with the same names. To test this command, it's better that you do it under a temporary directory so that you don't overwrite anything by accident.
Below is an example that creates a tar file for email submission. Assume that your CS login name is "john". First, you will create the directory "john-A1" (say, under /u/john/cs201) and copy all the files and directories to be submitted into the directory /u/john/cs201/john-A1/. Below shows a screen shot of making the tar ball, assuming that you've created the directory for submission in /u/john/cs201/john-A1 and you are at /u/john/cs201/.
/u/john/cs201/> ls john-A1/
Makefile test.c typescript
/u/john/cs201/> tar cvf john-A1.tar john-A1/*
john-A1/Makefile
john-A1/test.c
john-A1/typescript
/u/john/cs201/> ls -l john-A1.tar
-rw------- 1 john them 10240 Mar 31 10:00 john-A1.tar
Related commands:
1. To verify the content of a tar file, say "john-A1.tar", do the following:
tar tvf john-A1.tar
Note this command does not extract files from john-A1.tar, but rather it shows what're inside it. This is very useful before you actually extract a tar file.
2. To untar a tar file, say "john-A1.tar", do the following:
tar xvf john-A1.tar
This will create the directory "john" with all the files that are inside it. Warning: whatever files and directories in john-A1.tar will overwrite existing ones with the same names. To test this command, it's better that you do it under a temporary directory so that you don't overwrite anything by accident.
Saturday, June 19, 2010
here document
(Because the document is right
here in the source code rather than in an external file.)
The Ruby Programming Language, 1st Edition p 51
here in the source code rather than in an external file.)
The Ruby Programming Language, 1st Edition p 51
Tuesday, June 15, 2010
c++ ** stack smashing detected ***
http://ubuntuforums.org/archive/index.php/t-352672.html
changed
char wordFromFile[36];
to
char wordFromFile[256];
to make it work
I think the stack smashing was detected only after the function returned, not when the stack was actually getting smashed.
changed
char wordFromFile[36];
to
char wordFromFile[256];
to make it work
I think the stack smashing was detected only after the function returned, not when the stack was actually getting smashed.
Thursday, June 3, 2010
Sunday, May 30, 2010
moving pointers around
if(*(*(args->arg_array+i)+1) == '\0'){
args->rdfilename[0] = (args->arg_array[i+1]); // point to the filename
}
// if the next character is a character make that character the start of the filename
else{
args->rdfilename[0] = (*(args->arg_array+i)+1);// point to the filename
//not args->rdfilename[0] = *(*(args->arg_array+i)+1);
// **(args->arg_array+i) = '\0'; // remove the < // I deleted the < but the pointer is still pointing to its slot
args->rdfilename[0] = (args->arg_array[i+1]); // point to the filename
}
// if the next character is a character make that character the start of the filename
else{
args->rdfilename[0] = (*(args->arg_array+i)+1);// point to the filename
//not args->rdfilename[0] = *(*(args->arg_array+i)+1);
// **(args->arg_array+i) = '\0'; // remove the < // I deleted the < but the pointer is still pointing to its slot
Saturday, May 29, 2010
ld.so.1: sh.out: fatal: relocation error: R_SPARC_JMP_SLOT: unidentifiable procedure reference: link-map 0xff3f7368, offset 0x49, called from 0x10ed0
ld.so.1: sh.out: fatal: relocation error: R_SPARC_JMP_SLOT: unidentifiable procedure reference: link-map 0xff3f7368, offset 0x49, called from 0x10ed0
Tuesday, May 25, 2010
-lpthread: linker input file unused because linking not done
gcc: -lpthread: linker input file unused because linking not done
gcc: -lrt: linker input file unused because linking not done
I got this error/warning when I put the -lpthread in my general flags macro.
It should only be on the final (top level) linking.
gcc: -lrt: linker input file unused because linking not done
I got this error/warning when I put the -lpthread in my general flags macro.
It should only be on the final (top level) linking.
Friday, May 14, 2010
passing arg 3 of `pthread_create' from incompatible pointer type
http://www.kernel.org/doc/man-pages/online/pages/man3/pthread_create.3.html
Subscribe to:
Posts (Atom)