I\'m having segfault problem in my application written using C++ and compiled using GCC 4.3.2. It is running under Debian 5 x64.
I do some image processing work in C++. For this i use CImg.h library which i feel is good for my work.
Segmentation fault when calling the Update_Multiplier and gdb debugger shows these: Program received signal SIGSEGV, Segmentation fault.
On using filesize is PHP is crashing the apache server. No error is seen in the log file but window event viewer shows
I\'m trying to figure out how to execute machine code stored in memory. I have the following code: #include <stdio.h>
I have come across a problem while writing a fairly simple program. I have a statically allocate开发者_如何学God vector as a global variable and in a function I\'m trying to change the values of the e
I have a buffer class in my C++ application as follows: class Buffer { public: Buffer(size_t res): _rpos(0), _wpos(0)
I\'m using Ubuntu 9.04 and I applied this tutorial But I\'m still getting this error: 开发者_如何转开发$ zf show version
The problem is that when I run the code below, on a single core, sometimes it runs correctly,and sometimes I get segmentation fault. Probably this problem will occure more frequently on a multi-core m
I\'m new to assembly language and I have to implement a function, in my case sin(x), that could be called from a C source file.