Tagged Questions

This tag refers to the VxWorks Real-Time Operating System.

learn more… | top users | synonyms

8
votes
5answers
622 views

How do I receive raw, layer 2 packets in C/C++?

How do I receive layer 2 packets in POSIXy C++? The packets only have src and dst MAC address, type/length, and custom formatted data. They're not TCP or UDP or IP or IGMP or ARP or whatever - they're ...
6
votes
1answer
246 views

Thread class memory allocation oddity on an embedded platform

I am running into a strange issue I've been able to track down somewhat but I still can't see the cause. Maybe someone here can shed some light? I'm running on a PowerPC processor on top of VxWorks ...
3
votes
1answer
36 views

VxWorks: how can I be sure that data is read from DDR and not from cache

example: int foo(void) { static volatile int data; data = 0xaaa; /* something to assure cache flushing */ if (data == 0xaaa) return 1; return 0; } the question is what ...
3
votes
2answers
188 views

Exception thrown by unexpected assembler code after a call to new (heap)

I am chasing an exception which is thrown from a part of code which is added by the compiler after each call to new. It's the standard C++ new, which should get some memory from the heap and call the ...
3
votes
4answers
866 views

How does a VxWorks scheduler get executed?

Would like to know how the scheduler gets called so that it can switch tasks. As in even if its preemptive scheduling or round robin scheduling - the scheduler should come in to picture to do any kind ...
3
votes
2answers
823 views

Has anyone run VxWorks on a desktop PC as a target

Can I use a desktop PC to run VxWorks as the operating system? In other words, can a standard PC be used as a target processor? I'm not talking about hosting Workbench and a VxSim on the same ...
3
votes
3answers
819 views

In vxworks, should every task be spawned with VX_FP_TASK option?

In vxworks, should every task be spawned with VX_FP_TASK option? The VX_FP_TASK option is required if your task uses any floating point operations. But how does one predict the future - i mean, how ...
3
votes
2answers
2k views

How are the vxWorks “kernel shell” and “host shell” different?

In the vxWorks RTOS, there is a shell that allows you to issue command to your embedded system. The documentation refers to kernel shell, host shell and target shell. What is the difference between ...
2
votes
1answer
141 views

Linux/vxworks signals

I came across the following in a vxworks manual and was wondering why this is the case. What types of things do signals do that make them undesirable? In applications, signals are most ...
2
votes
3answers
1k views

How to determine why a task destroys , VxWorks?

I have a VxWorks application running on ARM uC. First let me summarize the application; Application consists of a 3rd party stack and a gateway application. We have implemented an operating system ...
2
votes
4answers
918 views

Issues in porting c/c++ code to VxWorks

I need to port a c/c++ codebase that already supports Linux/Mac, to VxWorks. I am pretty new to VxWorks. Could you let me know what are the possible issues that could arise? Thanks.
2
votes
1answer
303 views

Should I put the complete Tornado tree under version control or not?

I finally have a hardware guy that is insterested in controlling the firmware. This is for vxworks firmware. The tornado (2.2.1) gui creates a project file that has a list of files that were ...
2
votes
1answer
1k views

Will taskDelay(0) yield the CPU to a lower priority task

If there are 3 tasks(T1,T2,t3) with priority P1 P2 P3. P1 is pended. Assume that task P2 is doing some computation. During its execution, it wants to Yield the CPU to other tasks in the system. ...
2
votes
1answer
1k views

How do I use the vxWorks debug agent to perform pre-kernel debugging?

The vxWorks documentation states: The WDB agent itself is independent of the target operating system: it attaches to run-time OS services through a virtual-function run-time interface. The ...
2
votes
5answers
495 views

Can I implement a cooperative multi-tasking system in VxWorks?

A legacy embedded system is implemented using a cooperative multi-tasking scheduler. The system essentially works along the following lines: Task A does work When Task A is done, it yields the ...
2
votes
2answers
2k views

How can a task wait on multiple vxworks Queues?

We have a vxWorks design which requires one task to process both high and low priority messages sent over two message queues. The messages for a given priority have to be processed in FIFO order. ...
2
votes
2answers
1k views

Why is there no main() function in vxWorks?

When using vxWorks as a development platform, we can't write our application with the standard main() function. Why can't we have a main function?
2
votes
1answer
663 views

Can I display the list of all the system objects (semaphores, queues…) in VxWorks?

I would like to know what semaphores, messageQueues, etc... are active in my vxWorks 6.x system. I have access to this information via the debugger, but I would like access to it from the shell. Is ...
2
votes
1answer
336 views

What happens to your time slice if you get pre-empted in vxWorks?

If you have round robin enabled in Vxworks and your task gets preempted by a higher priority task, what happens to the remaining time slice?
2
votes
3answers
3k views

How does vxWorks deal with two tasks at the same priority?

We have two tasks (T1 and T2) in our vxWorks embedded system that have the same priority (110). How does the regular vxWorks scheduler deal with this if both tasks are ready to run? Which task ...
1
vote
3answers
103 views

What can cause Program Counter to have an invalid address?

I am getting an exception "Invalid Program Counter Address" in Vxworks + PPC 603. Application is linking to multiple 'C' libraries. Am not able to place, what could cause this problem? Is there a ...
1
vote
1answer
81 views

(vxworks) In the binary produced using this linker script, why doesn't the first address encountered start at the text segment start address?

I have a project I'm working on in vxWorks, constructing a vxsim binary for testing. There's three stages to the link process; the relevant portions of the makefile look roughly like the following: ...
1
vote
3answers
273 views

Floating point operations in interrupt handler (PowerPC, VxWorks)

I haven't found any resources that exactly answer what I am trying to understand with an issue I saw in a piece of software I am working on, so I'll ask the geniuses here! For starters, I'm running ...
1
vote
0answers
172 views

Does the VxWorks sockLib support the SO_RCVTIMEO option that can be used by setsockopt to set the timeout of a recv call like in winsock?

Does the VxWorks sockLib support the SO_RCVTIMEO option that can be used by setsockopt to set the timeout of a recv call like in winsock? Here is an example of the call in Windows: int timeout = ...
1
vote
1answer
168 views

Googletest on VxWorks 6.6 + / Wind River 3.0

Has anyone successfully ported googleTest to a real time process in WindRiver 3.0 / VxWorks 6.6 ? I am able to get gtest to build, but I get a few errors when linking. I can modify these specific ...
1
vote
1answer
113 views

What does it mean for a binary to be 'munched' after it is compiled?

The title pretty much says it. This is w/regard to VxWorks; unfortunately, the documentation more or less says that it happens but not why or what purpose it serves.
1
vote
1answer
128 views

Function running confuse on VxWorks

We're trying to use VxWorks' UDP multicast. Using the command line (->), we call the initialization function with some parameters and the multicast runs successfully. When I try to run this method ...
1
vote
1answer
378 views

How does one read/write memory on a PCI device in VxWorks 653?

I'm using VxWorks 653, and my target is the wrSbc7457 Power PC. I have a mezzanine card on my wrSbc7457, and I'm trying to write/read the memory on that mezzanine card. For those of you familiar ...
1
vote
1answer
439 views

How to set keepalive option for induvidual socket in VxWorks

Is there any way to set keepalive for induvidual socket descriptor in vxworks? I read in some documents that "SOL_TCP" option in setsockopt function will do such favors in linux. Is such facility ...
1
vote
4answers
229 views

How do global variables contribute to the size of the executable?

Does having global variables increase the size of the executable? If yes how? Does it increase only the data section size or also the text section size? If I have a global variable and initialization ...
1
vote
1answer
448 views

Why a mutex cannot be released from an ISR

Vxworks states that mutual exculsion semaphores : Cannot be given inside ISR, while the condition is vaild for binary and counting semaphore. I am not able to understand the reason out the same. ...
1
vote
4answers
382 views

tcp/ip accept not returning, but client does

server: vxworks 6.3 calls the usual socket, bind, listen, then: for (;;) { client = accept(sfd,NULL,NULL); // pass client to worker thread } client: .NET 2.0 TcpClient constructor to connect to ...
1
vote
5answers
320 views

Unit testing UDP socket handling code

Are there any 'good' ways to cause a thread waiting on a recvfrom() call to become unblocked and return with an error? The motivation for this is to write unit tests for a system which includes a ...
1
vote
0answers
93 views

Adding -fno-omit-frame-pointer option in ARMARCH5gnu in VxWorks leads to random crashes

Application crashes randomly when -fno-omit-frame-pointer option is added during compilation. This problem happens in ARMARCH5gnu architecture in VxWorks. Any pointers in the direction for resolving ...
1
vote
3answers
1k views

What are all the differences between pipes and message queues?

What are all the differences between pipes and message queues? Please explain both from vxworks & unix perspectives. I think pipes are unidirectional but message queues aren't. But don't pipes ...
1
vote
1answer
286 views

VxWorks : Task Id overwrites to another memory location

Hi I have an application running on VxWorks 5.5.1 It basically allocates a STL map data structure but in some cases my main task crashes. When I monitor via debugger, the allocated size for an STL ...
1
vote
2answers
1k views

Cross compile Boost 1.40 for VxWorks 6.4

I'm trying to migrate a project which uses Boost (particularly boost::thread and boost::asio) to VxWorks. I can't get boost to compile using the vxworks gnu compiler. I figured that this wasn't going ...
1
vote
1answer
380 views

Do vxworks task share data region?

In vxworks is the data region shared across all the created tasks like linux threads ?. Also what about the text and code segment which I feel should be separate for each task
1
vote
2answers
382 views

How to get address of variable in a VxWorks Project

VxWorks how to get address of local variable to see the memory contents.
1
vote
5answers
2k views

What C/C++ compilers are available for VxWorks?

I'm new to the VxWorks environment, I'm wondering what C and C++ compilers are available for use with VxWorks?
1
vote
3answers
881 views

Good source of information about VxWorks? [closed]

I'm new to the VxWorks Environment are there any good sources of information out there?
1
vote
2answers
1k views

How do you use environment variables in vxWorks?

In a vxWorks Real-Time process, you can pass environment variables as one of the parameter of the main routine. How do you use the environment variables in the kernel context?
1
vote
1answer
1k views

What types of sockets are available in VxWorks?

Vxworks supports standard IP v4 and IP v6 sockets, but sockets are also used for other purposes. What other types of sockets are available?
1
vote
1answer
715 views

What online resources are there to learn about VxWorks?

What are some of the online resources you have found useful to learn about VxWorks?
1
vote
1answer
567 views

Can I display the global variables of a RTP in the shell?

In VxWorks, I can display global variables in the shell like so: -> my_global my_global = 0x103c4110: value = 4 = 0x4 Is there a way to do the same with a RTP global variable?
1
vote
1answer
1k views

How to receive UDP Multicast in VxWorks 5.5

I have been unable to receive UDP multicast under VxWorks 5.5. I've joined the multicast group: setsockopt(soc, IPPROTO_IP, IP_ADD_MEMBERSHIP, (char *) &ipMreq, sizeof (ipMreq)); Similar code ...
1
vote
4answers
3k views

How do I redirect Tornado / VXWorks shell output?

I've been working on an embedded C/C++ project recently using the shell in Tornado 2 as a way of debugging what's going on in our kit. The only problem with this approach is that it's a complicated ...
1
vote
1answer
631 views

How can I know why one of my vxWorks task is pended?

In vxWorks, I can issue the "i" command in the shell, and I get the list of tasks in my system along with some information like the following example: NAME ENTRY TID PRI STATUS ...
1
vote
2answers
507 views

How can I specify the maximum amount of heap an RTP can use in VxWorks?

We are creating a Real-Time Process in VxWorks 6.x, and we would like to limit the amount of memory which can be allocated to the heap. How do we do this?
1
vote
1answer
224 views

What happens to the time slice if you disable preemption in vxWorks?

If you have round robin scheduling enabled in VxWorks, and you use taskLock() to disable preemption, what happens when your timeslice expires?

1 2 3