Tagged Questions
The bus-error tag has no wiki summary.
7
votes
10answers
1k views
How to get a “bus error”?
I am trying very hard to get a bus error.
One way is misaligned access and I have tried the examples given here and here, but no error for me - the programs execute just fine.
Is there some ...
5
votes
3answers
297 views
Why does the following C program give a bus error?
I think it's the very first strtok call that's failing. It's been a while since I've written C and I'm at a loss. Thanks very much.
#include <stdio.h>
#include <string.h>
int main(int ...
3
votes
3answers
126 views
Why does my 2D array cause a bus error in C?
I'm attempting to create a simple 2D array in C but apparently running into some memory trouble. My setup is simple enough and I can't tell what's wrong. I admit that my understanding of pointers is ...
2
votes
4answers
90 views
C - K&R exercise 2.4 - why am I getting a bus error?
Why am I getting a bus error? The problematic line is marked inside the code.
Exercise 2-4.
Write an alternative version of squeeze(s1,s2) that deletes each character in s1 that matches any character ...
1
vote
4answers
116 views
Trouble tracking down a Bus Error/Seg Fault in C++ and Linux
I have a program that processes neural spike data that is broadcast in UDP packets on a local network.
My current program has two threads a UI thread and a worker thread. The worker thread simply ...
1
vote
1answer
118 views
Sorted doubly linked list gives bus error when accessing in reverse
I've got a generic doubly-linked list implementation, and was working on insertion. After insertion, I try to iterate backwards through the list starting at the foot, and I get a bus error. To test ...
1
vote
1answer
463 views
How do I fix 'bus error' when trying to do git-commit or git-status
I have a git repository on an OS X server that used to work fine. I was able to add files, commit them, and pull the content to my laptop.
Now, when I ssh into the server and do git commit or git ...
1
vote
1answer
238 views
Bus error when using GLUT
I am trying to create a GLUT application. Currently, I have this code:
void init ( GLvoid ) // Create Some Everyday Functions
{
glShadeModel(GL_SMOOTH); // Enable ...
1
vote
4answers
2k views
Debugging SIGBUS on x86 Linux
What can cause SIGBUS (bus error) on a generic x86 userland application in Linux? All of the discussion I've been able to find online is regarding memory alignment errors, which from what I ...
1
vote
3answers
637 views
C: Bus Error using different compilation arguments
So it's the third week of my life in C and I've been given the task of writing a program which takes in upto 100words which are upto 80characters long, calculates the average word length of the ...
0
votes
1answer
59 views
Bus Error in MPI_Finalize
I'm writing an MPI program for a parallel computing class. I've got the code working, and it outputs the correct result, but when I attempt to call MPI_Finalize with more than one process, I get a ...
0
votes
1answer
83 views
Python bus error problem when writing to database
Whenever I try to write/update/delete from MySQL I've been experiencing a bus error problem since I've installed zlib on my machine. Has anyone else experienced this problem? There's no error message ...
0
votes
6answers
92 views
Bus error when trying to write in FILE
I am trying to generate a matrix of all ones in C++, using an 2D array, however i have a BUS ERROR when trying to write more than 735 characters, I think I have problems with memory allocation, can ...
0
votes
3answers
238 views
Bus error while running a simple string C program
I was running this simple program, the output i get is a "bus error". using some debugging statements i found the point at which it occurs was at the strcat() call.
#include<stdio.h>
...
0
votes
3answers
122 views
Bus Error on Intel Mac, why?
Test program which causes a EXC_BAD_ACCESS signal.
Why does this cause a bus error? I want to change the 'HI' to 'fI'.
//BUS ERROR TEST
#include <iostream>
void test(char *text)
{
text[0] ...
0
votes
0answers
179 views
bus error git fsck error - Any way to recover (osx)
I've got a local repo that started really having issues, so I tried to repair with all manner of different flavors of fsck. They're all yielding bus errors immediately. Is there any way to try and ...
0
votes
1answer
430 views
Fortran Bus Error When Modifying Parameter
Whenever I assign a new value to a parameter, I get a bus error. I don't see how I'm pointing to non-existant memory. I should have access to this address, as it is declared in the parameter list, ...
0
votes
1answer
245 views
Scanf fails with bus error
I'm playing with C and I've run into this error:
#include <stdio.h>
int main ()
{
char* foo;
scanf("%s", foo);
printf("entered %s", foo);
return 0;
}
scanf takes pointer, foo is pointer, ...
0
votes
1answer
655 views
Bus Error - What causes this in Ruby?
I have run into this error 5 or 10 times over the past few years and have never found a clear answer to this problem. Here is the error:
$ rake db:migrate
...
0
votes
4answers
217 views
std::cin >> *aa results in a bus error
I have this a class called PPString:
PPString.h
#ifndef __CPP_PPString
#define __CPP_PPString
#include "PPObject.h"
class PPString : public PPObject {
char *stringValue[];
public:
char ...
0
votes
2answers
340 views
C++ Bus error in SPARC arcitecture
I would like to understand why I am getting a bus error with this code.
int main()
{
int p=34;
int *pp= (int *) ((char *)&p+1);
cout<<*pp<<"\n";
return 0;
}
0
votes
4answers
1k views
C Malloc to a Pointer Through Function Call Causes Bus Error
Due to my feeble understanding of allocating type memory to pointers, the following causes a bus error on the call to barrier_create ("hi" is never printed).
typedef struct barrier barrier_t;
typedef ...
0
votes
3answers
291 views
“Bus error” accessing a set<int> from a struct
Searched for a while, but I can't figure out why this would raise a bus error.
Any help would be much appreciated.
typedef struct {
set<int> pages;
} someStruct;
...
void someFunction() {
...
-1
votes
1answer
270 views
Xcode Bus Error When Compiling
My iPhone app was compiling just fine, then all of the sudden, it started failing to compile, with the error:
LLVM GCC 4.2 Error Internal Compiling Error: Bus Error 10
It compiles just fine for ...