Since 4/5/2012 6:59:08 AM, fmassei has written 9 articles and participated in 36 conversations. fmassei signature: fmassei
fmassei's articles:
Items(9) /1
[Slightly OT] Memory management and custom allocator6537 (12/31/2011 2:56:53 PM) comp.unix.programmer [xpost comp.lang.c, comp.unix.programmer, comp.os.ms- windows.programmer.win32] Hello NG, I have a very specific question, but first of all I describe you what I'm facing as I'm open to alternative general solu... FtM
select + low priority task426 (3/11/2011 2:10:25 PM) comp.unix.programmer Hello everyone. I have a simple problem and there are many possible solutions: I ask here if the one I tought is the best. My application deals with a big amount of sockets, and the flow is built around a selec... FtM
Link problem3170 (9/22/2010 12:48:37 PM) comp.os.ms-windows.programmer.win32 Hello everyone,
I have the following problem, but I can't find a solution..
I have an application and a DLL. The application uses some of the DLL
functions, and the DLL needs to use one or two functions defi... FtM
const pointers10115 (7/8/2010 12:35:54 PM) comp.lang.c Hello.
I was updating some code trying to enforce the use of "const"
modifiers, and I came up with some strange doubts.
First of all:
If I have a:
const void *p;
I can read and write the data pointed by p... FtM
hints on "new" code1162 (6/23/2010 10:13:09 PM) comp.lang.c Hello everyone,
first of all, I've cross-posted the same request on it.comp.lang.c
(the italian equivalent of clc) but, as you guys helped me many times
on similar themes I'm posting here too.
I'm open-... FtM
Dynamic linking and unresolved symbol252 (9/1/2009 11:12:53 AM) comp.unix.programmer Hello. I ended up with a strange situation in some dynamically loaded libraries, and I wanted to ask you if there is something I can do about it. The shortest C code to reproduce the situation follows: /* libr... FtM
Debugging memory leaks3437 (10/14/2008 10:03:07 PM) comp.lang.c Hello! I made a short piece of code that I find very useful for debugging, and I wanted to ask you if it is correct, somehow acceptable or if I simply reinvented the wheel. To deal with some bad bugs caused by ... fmassei
forward declarations and incomplete types831 (7/19/2008 11:07:51 AM) comp.lang.c Hello, I'm have a question about forward structure declarations and incomplete types. The complete structure of my file is pretty complex, but just as an example the code below will explain the problem: struct... fmassei
Reentrant functions and memory allocation3730 (3/30/2008 12:45:37 PM) comp.lang.c Dear all, I'm trying to put some old code in a portable, cross-platform library and I'm facing a big problem: is there a standard, platform- independent way to write a reentrant function that allocate dynamic m... fmassei
x=(r,s,t);3223 (1/23/2009 2:16:37 PM) comp.lang.c Hi, I get a strange output with the below code snippet. #include int main(void) { int r=2,s=3,x=0,t=7; x=(r,s,t); printf("x values is %d \n",x); return 0; } I get the output as 7. It looks to be ... karthikbalaguru79(791)
ridiculous5140 (2/4/2009 1:13:12 AM) comp.lang.c Just looked through the lastest 10 messages or so, and at least half of them were about offtopic stuff and 3 others were spam! I wish people would exercise some common sense and civility. Sick of wading throug... netrek(202)
Dynamic linking and unresolved symbol252 (9/1/2009 11:12:53 AM) comp.unix.programmer Hello. I ended up with a strange situation in some dynamically loaded libraries, and I wanted to ask you if there is something I can do about it. The shortest C code to reproduce the situation follows: /* libr... fmassei(45)
const pointers10115 (7/8/2010 12:35:54 PM) comp.lang.c Hello.
I was updating some code trying to enforce the use of "const"
modifiers, and I came up with some strange doubts.
First of all:
If I have a:
const void *p;
I can read and write the data pointed by p... fmassei(45)
select + low priority task426 (3/11/2011 2:10:25 PM) comp.unix.programmer Hello everyone. I have a simple problem and there are many possible solutions: I ask here if the one I tought is the best. My application deals with a big amount of sockets, and the flow is built around a selec... fmassei(45)
[Slightly OT] Memory management and custom allocator6537 (12/31/2011 2:56:53 PM) comp.unix.programmer [xpost comp.lang.c, comp.unix.programmer, comp.os.ms- windows.programmer.win32] Hello NG, I have a very specific question, but first of all I describe you what I'm facing as I'm open to alternative general solu... fmassei(45)
Checksum in a struct3756 (7/11/2012 2:56:53 PM) comp.lang.c I have a function that computes a 16-bit checksum (following whatever
algorithm) of a memory space:
unsigned int checksum(const void *buffer, size_t size);
I want to embed this checksum in a struct:
... pozzugno(150)
GCC is re-implementing in C++ and C discarded17576 (8/22/2012 5:34:37 PM) comp.lang.c Hello! Wise people!
Just read the shock news[1][2] that GCC is re-implementing in C++ and C will be discarded ( deprecated ? : )
But still not very clear on it.
.. does it mean C++ is better than C?
... lovecreatesbeauty(723)
avcall, callback, trampoline, vacall, etc2337 (10/25/2012 7:24:19 PM) comp.lang.c++ Dear Programming Gurus,
These concepts are rather well talked about .. over the internet and
usenet, however, I cant find any clear explanation.
avcall, callback, trampoline, vacall, etc
I looked in a... gnuist007(13)