I would like to use a custom Point class with the CGAL constrained delaunay triangulation. However, with the following MyPoint class (which should behave the exact same as a CGAL::Point_2 no?) I get s
I have a Qt program which displays the data it receives over UDP. It works fine for around 30 seconds but after a while it gives Segmentation Fault and crashes. This 30 seconds is also not fixed.
#include<stdio.h> void foo(int **arr) { arr[1][1]++; } main() { int arr[20][20]; printf(\"%d\\n\",arr[1][1]);
I have been working for a couple of days on a problem with my application running on an embedded Arm Linux platform. Unfortunately the platform precludes me from using any of the usual useful tools fo
As stated in the title, the program is working on my local machine (ubuntu 9.10) but not on the server (linux). It\'s a grid hosting hosting package of godaddy.
I am trying to pass in arguments to the a parent file that is supposed to create a child process for each pair of arguments. The child processes will add up each pair and 开发者_运维知识库return their
I\'ve noticed an unusual problem with some of my php programs.Sometimes when visiting a page like profile.edit.php, the browser throws a dialogue box asking to download profile.edit.php page.When I do
Why does the below code give Seg开发者_C百科. Fault at last line? char* m=ReadName(); printf(\"\\nRead String %s\\n\",m); // Writes OK
EDIT: This reproducible SIGSEGV happens on a Linux machine with more than one proc and more than 2GB of mem, so Java is defaulting to the -server mode. Interestingly enough if I force \"-client\" ther
I have a libpthread linked application. The core of the application are two FIFOs shared by four threads ( two threads per one FIFO that is ;). The FIFO class is synchronized using pthread mutexes and