Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

Question about Preemptive Scheduler

Posted by leesp on May 23, 2017

Can a task be pre-empted at any point? For example the task below: Can it be pre-empted any time, or pre-emption can only happen while it is waiting for the semaphore? ~~~ static void taskconsole(void *p) { (void)p; for (;;) { ... ... // Can it be pre-empted here? ... if (xSemaphoreTake(dispmutex, ~0)) { // Or, pre-emption can only happen here? strwrite(str); xSemaphoreGive(dispmutex); } } } ~~~


Question about Preemptive Scheduler

Posted by rtel on May 24, 2017

In the code you show the task can be preempted at any time other than a few short critical sections that are inside inside the xSempareTake() and xSemaphoreGive() functions.


Question about Preemptive Scheduler

Posted by leesp on May 24, 2017

I read the Example 1 found in FreeRTOS book: two tasks are created with SAME priority, and each task will print a different string on the console. It was mentioned that: > "...both tasks are rapidly entering and exiting the Running state...To be able to select the next task to run, the scheduler itself must execute at the end of each time slice. A periodic interrupt, called the tick interrupt, is used for this purpose"

If configTICKRATEHZ is 1000 (ie 1ms period), but each task's for(;;) loop takes 20ms for example, will the scheduler pre-empt a task every 1ms? Which means a task will be switched in and out 10 times before it complete one loop? Or, the scheduler will wait for a task to complete 1 loop, then pre-empt it?


Question about Preemptive Scheduler

Posted by richard_damon on May 24, 2017

If you have enabled both Preempton and Time Slicing, then every tick interrupt you will switch between two equal priority execution bound tasks. The tick interrupt (which is what initiates the switch, know nothing of the loop in the task.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner