Questions tagged [bus]

A Bus is a physical device used to connect different functional blocks of a computer or a different computers in order to communicate them together. Also Bus is a data type in MATLAB language used to bundle some data to virtual (just for useful rendering) or non-virtual (for contiguous memory allocation) structure.

The Bus advantages (as physical device) over wires are reducing the needed number of wires and catholicity. The main characteristics of Buses are width (amount of bits can be transmitted at once) and frequency (work speed).

The Bus as a structure of MATLAB language used to bundle different variables (or signals, for example in Simulink) in one structure. Can be used as virtual bus just for convenient accessing to variables and for reducing number of wires at Simulink diagram or as non-virtual - Nonvirtual buses use contiguous memory allocation for variables.

321 questions
-1
votes
1 answer

Dynamic Queue using Linked List // BUS ERROR: 10 (C++)

Hi I am implementing a basic linked-list based dynamic Queue class and when running the test I get "bus error : 10". I am new with using terminal (MAC OS X) and I would like some help finding what is wrong with my code or maybe the way I am trying…
Alicia Pavan
  • 27
  • 1
  • 5
-1
votes
2 answers

Bus error when using memmove

Possible Duplicate: Bus error troubleshooting To remove duplicates from a string this is the program I have written: #include #include #include void remDup(char str[]) { int i=0,len; int arr[256]={[0 ... 255] =…
-2
votes
1 answer

Google Directions Api on driving bus mode

I would like to use Google Directions Api on 'DRIVING' mode, but I want to know the best route driving a bus and not a car. I'm not talking about 'TRANSIT' mode. I don't want to take a bus but drive it. Does anybody know if that option is possible?
-2
votes
2 answers

character arithmetic in c;Bus error

My program is supposed to take in 2 strings and do arithmetic. Example: input: abc+aab output: abc + aab => bce The program takes the user input string and loads the 2 parts in to a multidimensional array and a char variable for the arithmetic…
aelius
  • 3
  • 1
-3
votes
1 answer

BUS Error : 10 While compiling C program

I am working on a class project to solve the wandering Salesman problem, which is basically the TSP, except you don't return to the source. I took the approach of finding all possible permutations of a set of vertices and then iteratively…
Jay Bajaj
  • 3
  • 1
-5
votes
1 answer

Azure Service Bus C# Architecture

I understand that Azure Service Bus is a messaging system. But what I don't understand is how this fits into a CRUD app scenario. Lets say I have a Person class that has some properties/getter/setter methods. And when a user wants to create a new…
user8132396
  • 131
  • 1
  • 1
  • 5
1 2 3
21
22