Searched full:run (Results 1 – 25 of 157) sorted by relevance
1234567
/Kernel-v11.1.0/.github/workflows/ |
D | kernel-demos.yml | 35 run: msbuild WIN32.sln -t:rebuild 39 run: msbuild WIN32.sln -t:rebuild 61 run: | 93 run: | 100 run: make -j 105 run: make -j COVERAGE_TEST=1 117 run: | 124 run: | 131 run: | 155 run: | [all …]
|
D | auto-release.yml | 47 run: | 53 run: | 58 run: | 59 # Install deps and run 68 run: | 74 run: | 87 run: | 94 run: | 95 # Install deps and run 104 run: |
|
D | unit-tests.yml | 5 run: 28 run: | 30 - name: Run Unit Tests with ENABLE_SANITIZER=1 31 run: | 34 - name: Run Unit Tests for coverage 35 run: |
|
D | coverity_scan.yml | 3 # Run on every commit to mainline 27 run: | 41 run: | 56 run: | 75 run: | 95 run: | 114 run: |
|
D | git-secrets.yml | 20 run: cd git-secrets && sudo make install && cd .. 21 - name: Run git-secrets 22 run: |
|
D | formatting.yml | 15 name: Run Formatting Check 17 ( ( github.event.comment.body == '/bot run uncrustify' ) || 18 ( github.event.comment.body == '/bot run formatting' ) ) }}
|
D | ci.yml | 23 - name: Run spellings check 45 - name: Run manifest verifier
|
D | kernel-checks.yml | 37 # Run checks 46 run: |
|
/Kernel-v11.1.0/portable/template/ |
D | port.c | 33 /* Switch to the highest priority task that is ready to run. */ in vPortYield() 57 /* Switch to the highest priority task that is ready to run. */ in prvTickISR() 73 /* Switch to the highest priority task that is ready to run. */ in prvTickISR()
|
/Kernel-v11.1.0/portable/GCC/RL78/ |
D | portasm.S | 49 /* Restore the context of the next task to run. */ 73 /* Select the next task to run. */ 76 /* Retore the context of whichever task will run next. */
|
/Kernel-v11.1.0/portable/GCC/MicroBlazeV9/ |
D | port.c | 63 * Global counter used for calculation of run time statistics of tasks. 98 * the interrupt exists is the highest priority task that is able to run. This is 274 * interrupt handler because the kernel will run on lots of different in xPortStartScheduler() 288 /* Restore the context of the first task that is going to run. From here in xPortStartScheduler() 454 …/* The Xilinx implementation of generating run time task stats uses the same timer used for genera… in vPortTickISR() 455 … * FreeRTOS ticks. In case user decides to generate run time stats the tick handler is called more in vPortTickISR() 458 * For handling generation of run time stats, it increments a pre-defined counter every time the in vPortTickISR() 466 * interrupt because the kernel will run on lots of different MicroBlaze and in vPortTickISR() 537 * run time task stats calculation.
|
/Kernel-v11.1.0/examples/coverity/ |
D | README.md | 3 run [Synopsys Coverity](https://www.synopsys.com/software-integrity/security-testing/static-analysi… 20 Coverity can be run on any platform mentioned [here](https://sig-docs.synopsys.com/polaris/topics/c… 30 Go to the root directory of the FreeRTOS-Kernel repo and run the following
|
/Kernel-v11.1.0/examples/template_configuration/ |
D | FreeRTOSConfig.h | 59 * Cortex-M SysTick timer. Most Cortex-M MCUs run the SysTick timer at the same 93 * run using an algorithm optimised to the instruction set of the target hardware - 95 * the next task to run using a generic C algorithm that works for all FreeRTOS 139 * can run. Set to 0 to have the Idle task use all of its timeslice. Default to 1 360 /* Run time and task stats gathering related definitions. *********************/ 366 * if left undefined. See https://www.freertos.org/rtos-run-time-stats.html. */ 504 * configRUN_MULTIPLE_PRIORITIES to 0 to allow multiple tasks to run 507 * is able to run. If configRUN_MULTIPLE_PRIORITIES is set to 1, multiple tasks 508 * with different priorities may run simultaneously - so a higher and lower 509 * priority task may run on different cores at the same time. */ [all …]
|
/Kernel-v11.1.0/portable/ThirdParty/XCC/Xtensa/ |
D | readme_xtensa.txt | 26 NOTE: It may be possible to build and run this with the open-source 41 This port also includes a simple example application that may run on 61 FreeRTOS can run on any Xtensa or Diamond board without this board support 123 you have a supported emulation board, you can build to run on that. You 124 can also build to run on a raw Xtensa core with no board support, a 147 You can use xt-make, which comes with the Xtensa Tools, to run the 184 The provided examples are designed to run on the Xtensa instruction set 270 > xt-run [--turbo] example.exe 290 I/O if you want to use printf etc.). You can run "raw" executables on 373 XT_SIMULATOR Set this if building to run on the simulator. [all …]
|
/Kernel-v11.1.0/portable/RVDS/ARM7_LPC21xx/ |
D | portASM.s | 107 BX R0 ; to run. 112 MOV LR, PC ; is ready to run. 123 ; priority task that is ready to run.
|
/Kernel-v11.1.0/include/ |
D | task.h | 168 …ter; /* The total run time allocated to the task so far, as defined by the run time stats clock. … 300 * Create a new task and add it to the list of tasks that are ready to run. 335 * @param uxPriority The priority at which the task should run. Systems that 412 * Create a new task and add it to the list of tasks that are ready to run. 439 * @param uxPriority The priority at which the task will run. 540 * Create a new task and add it to the list of tasks that are ready to run. 567 …/ uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged sta… 661 …/ uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a privileged sta… 1225 * // The created task will not run during this period, unless 1276 * // The created task will not run during this period, unless [all …]
|
/Kernel-v11.1.0/portable/IAR/78K0R/ |
D | portasm.s26 | 77 portRESTORE_CONTEXT ; Restore the context of the next task to run. 82 ; Restore the context of the first task that is going to run. 116 portRESTORE_CONTEXT ; Restore the context of the next task to run.
|
/Kernel-v11.1.0/portable/Rowley/MSP430F449/ |
D | portext.asm | 69 /* Switch to the highest priority task that is ready to run. */ 87 /* Restore the context of the first task that is going to run. */
|
/Kernel-v11.1.0/portable/IAR/AVR_AVRDx/ |
D | portmacro.s90 | 220 ret ; ... scheduler decided should run. 233 reti ; ... scheduler decided should run. 239 reti ; ... scheduler decided should run.
|
/Kernel-v11.1.0/portable/IAR/AVR_Mega0/ |
D | portmacro.s90 | 214 ret ; ... scheduler decided should run. 227 reti ; ... scheduler decided should run. 233 reti ; ... scheduler decided should run.
|
/Kernel-v11.1.0/portable/IAR/MSP430/ |
D | portext.s43 | 76 /* Switch to the highest priority task that is ready to run. */ 94 /* Restore the context of the first task that is going to run. */
|
/Kernel-v11.1.0/portable/GCC/MSP430F449/ |
D | port.c | 224 /* Restore the context of the first task that is going to run. */ in xPortStartScheduler() 257 /* Switch to the highest priority task that is ready to run. */ in vPortYield() 274 /* Run the timer of the ACLK. */ in prvSetupTimerInterrupt() 313 * that is ready to run. */ in interrupt()
|
/Kernel-v11.1.0/portable/IAR/V850ES/ |
D | port.c | 40 /* The PSW value assigned to tasks when they start to run for the first time. */ 144 /* Restore the context of the first task that is going to run. */ in xPortStartScheduler() 170 … / configTICK_RATE_HZ ) / 2 ) - 1 ); /* divided by 2 because peripherals only run at CPU_CLOCK/2 */ in prvSetupTimerInterrupt()
|
/Kernel-v11.1.0/portable/IAR/MSP430X/ |
D | portext.s43 | 114 /* Select the next task to run. */ 134 /* Restore the context of the first task that is going to run. */
|
/Kernel-v11.1.0/portable/MSVC-MingW/ |
D | port.c | 314 * the threads that run tasks. This higher priority is required to ensure in xPortStartScheduler() 443 /* Run the actual handler. Handlers return pdTRUE if they in prvProcessSimulatedInterrupts() 463 /* Select the next task to run. */ in prvProcessSimulatedInterrupts() 488 * they do - so as they do not harm (slight run-time hit). */ in prvProcessSimulatedInterrupts() 568 * does not run and swap it out before it is closed. If that were to happen in vPortCloseRunningThread() 569 * the thread would never run again and effectively be a thread handle and in vPortCloseRunningThread()
|
1234567