in the same error box it also says CLR error:80004005. i’ve tried updating my drivers but that did’nt work either. I’m not too computer smart,so,any “easy” answer would be greatly appreciated. thanks to all.
Posts Tagged ‘Fatal’
When I Try To Open My Hp Image Zone, I Get A Hpqthb08.exe Fatal Error . Does Anyone Know How To Fix It?
Wednesday, February 3rd, 2010Is There A Way To Fix Hpqthb08.exe – Fatal Error. Damaged By Monarona Dona Virus.?
Tuesday, February 2nd, 2010When I tried to fix the MonaRonaDona virus according to responses I read on the web regarding the virus, I seemed to have done some damage to my computer. Mainly my shortcuts aren’t recognized, also I no longer can use my hp picture program that originally came pre-installed on my computer. Is it wise to do a System Restore?
Why Am I Getting Link : Fatal Error Lnk1104: Cannot Open File “debug/mfc_practicals.exe” Error?
Thursday, December 17th, 2009I am getting this error while executing the program.
I am using windows 7 os.
Where Do I Find A Repair Tool To Fix A Fatal Exe Error In Hkey_local_machine\software\fi…
Tuesday, October 6th, 2009continuance of previous question. has to do with a screen saver (fish tycoon) registry fatal error.
Hpzsetup.exe Fatal Error During Installation?
Monday, September 14th, 2009an hpzsetup.exe fatal error keeps popping up on my computer and i cant get it to come off.
My System Has Passed Thru Fatal Error “c000021a” With Status “0xc0000022″ Sys Restore Failed,,any Solutions??
Wednesday, August 5th, 2009like any anti virus say like “”"avg”"”……i have put the details up so as to get a straight solution for example the “”"the status code & the fatal error code”"”"
Error: Fatal Error C1083: Cannot Open Include File: ’sys/ipc.h’: No Such File Or Directory
Thursday, July 30th, 2009I am doing C program to create shared memory object. While compiling, I have got the above error. Please some one help me in solving this.
Here is my program:
#include
#include
#include
#include
#define SHMSZ 27
main()
{
char c;
int shmid;
key_t key;
char *shm, *s;
/*
* We’ll name our shared memory segment
* “5678″.
*/
key = 5678;
/*
* Create the segment.
*/
if ((shmid = shmget(key, SHMSZ, IPC_CREAT | 0666)) < 0) {
perror("shmget");
exit(1);
}
/*
* Now we attach the segment to our data space.
*/
if ((shm = shmat(shmid, NULL, 0)) == (char *) -1) {
perror("shmat");
exit(1);
}
/*
* Now put some things into the memory for the
* other process to read.
*/
s = shm;
for (c = 'a'; c <= 'z'; c )
*s = c;
*s = NULL;
/*
* Finally, we wait until the other process
* changes the first character of our memory
* to '*', indicating that it has read what
* we put there.
*/
while (*shm != '*')
sleep(1);
exit(0);
}