Real-Time Operating System (RTOS)

  Home  Operating System  Real-Time Operating System (RTOS)


“Real-Time Operating System (RTOS) frequently Asked Questions in various RTOS job Interviews by interviewer. The set of Real-Time Operating System (RTOS) interview questions here ensures that you offer a perfect answer to the interview questions posed to you. Get preparation of Real-Time Operating System (RTOS) job interview”



22 Real Time Operating System (RTOS) Questions And Answers

21⟩ What is task spawn in vxworks?

Task Spawn is used to create a thread in VXworks.

Once the thread is created than only we can make all the suspended,delete,resume operations.

Syntax

taskSpawn(char *name,int priority,int option,int stacksize,FUNCPTR entrypoint,int avg1,avg2....avg10)

1. name: task name examp: task1

2. priority: 0-255 //0---high, 255---low

3.options: 0 most of the times

4.FUNCPTR: It jumps to function we are calling examp; (FUNCPTR)fun1

5.avg1--avg10: almost 0 every time

 148 views