Gregory Nutt
|
6bd52bce06
|
Tickless OS: Correct a bug: logic to detect changes in head of timer list was wrong.
|
2014-08-10 13:12:18 -06:00 |
|
Gregory Nutt
|
e1769b22f1
|
Remove os_internal.h it has been replace by several new header files under sched/. There have been some sneak inclusion paths via os_internal.h, so expect a few compilation errors for some architectures
|
2014-08-08 18:39:28 -06:00 |
|
Gregory Nutt
|
0be5f2ca81
|
Move exit.c to task/exit.c
|
2014-08-08 18:38:04 -06:00 |
|
Gregory Nutt
|
d798dd37a7
|
Replace os_internal.h with sched/sched.h in files that actually reference something in sched.h
|
2014-08-08 17:53:55 -06:00 |
|
Gregory Nutt
|
1f28365f55
|
Part of the last incomplete change
|
2014-08-08 17:45:54 -06:00 |
|
Gregory Nutt
|
ccf4ed2148
|
Partial (non-working) checked in before the big, risky automated change
|
2014-08-08 17:29:44 -06:00 |
|
Gregory Nutt
|
224ee05957
|
Move a few files in sched/ that did not seem to have a home to sched/signal and sched/task
|
2014-08-08 16:57:47 -06:00 |
|
Gregory Nutt
|
23a334c066
|
Move task control files from sched/ to sched/task
|
2014-08-08 16:44:08 -06:00 |
|
Gregory Nutt
|
6683d749ac
|
Move errno related files from sched/ to sched/errno
|
2014-08-08 15:52:55 -06:00 |
|
Gregory Nutt
|
9afca906eb
|
Move initialization functions from sched/ to sched/init
|
2014-08-08 15:30:59 -06:00 |
|
Gregory Nutt
|
a79ecce878
|
Move page fill sources from sched/ to sched/paging
|
2014-08-08 15:08:07 -06:00 |
|
Gregory Nutt
|
f8da16a8d3
|
Move POSIX timer files from sched/ to sched/timer/
|
2014-08-08 14:55:16 -06:00 |
|
Gregory Nutt
|
d4b56eb3cc
|
Move clock functions from sched/ to sched/clock
|
2014-08-08 14:43:02 -06:00 |
|
Gregory Nutt
|
85e8117062
|
Move interrupt dispatch logic from sched/ to sched/irq
|
2014-08-08 14:31:15 -06:00 |
|
Gregory Nutt
|
0f318e9249
|
Move watchdog functions from sched/ to sched/wdog
|
2014-08-08 14:21:48 -06:00 |
|
Gregory Nutt
|
4ff17b3904
|
Move group logic from sched/ to sched/group
|
2014-08-08 14:06:42 -06:00 |
|
Gregory Nutt
|
e10a23ae50
|
Move environment files from sched/ to sched/environ
|
2014-08-08 13:53:29 -06:00 |
|
Gregory Nutt
|
cb79407ced
|
Move all pthread files from sched/ to sched/pthread
|
2014-08-08 12:55:02 -06:00 |
|
Gregory Nutt
|
0385a00a60
|
Move signal-related files from sched/ to sched/signal
|
2014-08-08 12:44:44 -06:00 |
|
Gregory Nutt
|
08879ca34c
|
Move POSIX message queue files from sched/ to sched/mqueue
|
2014-08-08 12:31:23 -06:00 |
|
Gregory Nutt
|
5ee57bda59
|
Some final tickless OS bugfixes. No longer EXPERIMENTAL. Update some comments
|
2014-08-07 19:11:22 -06:00 |
|
Gregory Nutt
|
c9661ad5a7
|
Change all time conversions. Yech. New timer units in microseconds breaks all existing logic that used milliseconds in the conversions. Something likely got broken doing this, probably because I confused a MSEC2TICK conversion with a TICK2MSEC conversion. Also, the tickless OS no appears fully functional and passes the OS test on the simulator with no errors
|
2014-08-07 18:00:38 -06:00 |
|
Gregory Nutt
|
17ea50b45e
|
Fix compler error in tickless code when round robin scheduling is enabled. Other cosmetic fixes to comments
|
2014-08-07 14:14:09 -06:00 |
|
Gregory Nutt
|
0aa7209765
|
Change CONFIG_MSEC_PER_TICK to CONFIG_USEC_PER_TICK. This gives more options for system timers in general, but more importantly, let's us realize higher resolution for the case of CONFIG_SCHED_TICKLESS=y -- of course, at the risk of some new interger overvflow problems
|
2014-08-07 13:42:47 -06:00 |
|
Gregory Nutt
|
caba61999a
|
Remove CONFIG_DISABLE_CLOCK
|
2014-08-07 12:35:24 -06:00 |
|
Gregory Nutt
|
520a51a3e1
|
Implements the tickless OS
|
2014-08-07 11:39:16 -06:00 |
|
Gregory Nutt
|
aaafcfd688
|
if CONFIG_SCHED_TICKLESS is defined, then the global variable g_system_timer does not exist.
|
2014-08-06 18:29:05 -06:00 |
|
Gregory Nutt
|
a1ae9d36df
|
Don't build in sched_processtimer.c if CONFIG_SCHED_TICKLESS is selected.
|
2014-08-06 18:28:51 -06:00 |
|
Gregory Nutt
|
b0324c00ee
|
Uses interval timer interfaces to get the time if CONFIG_SCHED_TICKLESS is selected.
|
2014-08-06 18:28:08 -06:00 |
|
Gregory Nutt
|
a93fdc165d
|
Use the clock_systimer() macro, do access the g_system_timer() global directly.
|
2014-08-06 18:27:35 -06:00 |
|
Gregory Nutt
|
0452b1555b
|
if CONFIG_SCHED_TICKLESS is defined, then the global variable g_system_timer does not exist
|
2014-08-06 18:26:16 -06:00 |
|
Gregory Nutt
|
f0eb4235d1
|
Add a new option CONFIG_SCHED_TICKLESS to enable the tickless OS. This is a work in progress but should be relatively safe since the new features are only enabled by this option (Safer but not 100% safe since it does not protect from typos and other dumb errors).
|
2014-08-06 18:25:42 -06:00 |
|
Gregory Nutt
|
19abe47a6f
|
sem_wait: Use set_errno() and get_errno(). Direce access inside the OS may not be supported in the future.
|
2014-07-31 15:01:37 -06:00 |
|
Gregory Nutt
|
e3310888e2
|
Cosmet updates to some comments
|
2014-07-17 17:58:24 -06:00 |
|
Gregory Nutt
|
0da9aaeb09
|
Fix some recurring typos: postion->position, *atino->*ation
|
2014-07-08 13:12:36 -06:00 |
|
Gregory Nutt
|
3b81e58047
|
NET: Fix some errors in recent network I/O buffering when stack runs from interrupt level
|
2014-06-28 11:35:14 -06:00 |
|
Gregory Nutt
|
0daf30675c
|
Fix conditional compilation for CLOCK_MONTONIC. From Manuel Stühn
|
2014-06-23 11:01:31 -06:00 |
|
Gregory Nutt
|
90b82696ac
|
Move SAMA5D3 MPDDRC definitions to a separate header file
|
2014-06-10 08:11:31 -06:00 |
|
Gregory Nutt
|
4035ed8c6c
|
CONFIG_START_YEAR/MONTH/DAY not required if an RTC is used
|
2014-05-26 07:45:15 -06:00 |
|
Gregory Nutt
|
44a3397283
|
sig_mqnotempty(): Test for a valid signal number inverted. From eero.nurkkala
|
2014-05-20 07:38:43 -06:00 |
|
Gregory Nutt
|
84d28641b7
|
SAM4S Xplained Pro: Clean-up of LED usage and also some integration of new timer features. From Bob Doiron
|
2014-05-05 14:38:29 -06:00 |
|
Gregory Nutt
|
79d9e9cccd
|
If the CPU load measurements are being driven by an external clock, then the prototype for sched_process_cpuload() must be available in include/nuttx/arch.h
|
2014-04-30 15:47:55 -06:00 |
|
Gregory Nutt
|
8d758a13de
|
The CONFIG_SYSTEMTICK_EXTCLK selection should only be available on systems that support it
|
2014-04-30 15:32:06 -06:00 |
|
Gregory Nutt
|
f7485ea962
|
Updated system timer logic from Bob Doiron
|
2014-04-30 14:46:26 -06:00 |
|
Gregory Nutt
|
33ddbeab16
|
STM32: More places where up_prioritize_irq is called when CONFIG_ARCH_IRQPRIO is not defined. Sourceforge ticket #26
|
2014-04-28 07:07:47 -06:00 |
|
Gregory Nutt
|
1909c44f87
|
Minor updates to READMEs and comments
|
2014-04-27 11:38:24 -06:00 |
|
Gregory Nutt
|
ee86b7afb9
|
ZNeo: update calibration
|
2014-04-25 12:38:56 -06:00 |
|
Gregory Nutt
|
daf6d347fc
|
Updates to ZNeo configurations + misc cosmetic changes to comments
|
2014-04-25 11:59:17 -06:00 |
|
Gregory Nutt
|
61555fe5e1
|
Various SAM4S related fixes, mostely related to the timer driver driver and the SAM4S timer/counter. All from Bob Doisin
|
2014-04-22 09:01:20 -06:00 |
|
Gregory Nutt
|
a8cb0ad8f4
|
Add debug assertion on failure to allocate a watchdog
|
2014-04-21 19:16:12 -06:00 |
|