This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.
from bb63afd Documentation/bl602: Update some imformation; Add
partition.toml in tool/bl602
new a0c3a09 sched/wqueue: merge kwork_lpthread.c and kwork_hpthread.c to
kwork_thread.c
new 855c78b work_queue: schedule the work queue using the timer mechanism
new 00854f0 userspace/wqueue: move exclusive access lock to mqueue inside
new 23d87ff usrwqueue: implement order work queue
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
include/nuttx/semaphore.h | 2 +-
include/nuttx/wqueue.h | 35 ++---
libs/libc/wqueue/Make.defs | 3 +-
libs/libc/wqueue/work_cancel.c | 53 +++++--
libs/libc/wqueue/work_lock.c | 105 --------------
libs/libc/wqueue/work_queue.c | 84 ++++++++---
libs/libc/wqueue/work_signal.c | 99 -------------
libs/libc/wqueue/work_usrthread.c | 189 +++++++-----------------
libs/libc/wqueue/wqueue.h | 50 +------
sched/wqueue/Make.defs | 13 +-
sched/wqueue/kwork_cancel.c | 17 ++-
sched/wqueue/kwork_hpthread.c | 171 ----------------------
sched/wqueue/kwork_lpthread.c | 171 ----------------------
sched/wqueue/kwork_notifier.c | 1 -
sched/wqueue/kwork_process.c | 271 ----------------------------------
sched/wqueue/kwork_queue.c | 130 ++++++++---------
sched/wqueue/kwork_signal.c | 111 --------------
sched/wqueue/kwork_thread.c | 297 ++++++++++++++++++++++++++++++++++++++
sched/wqueue/wqueue.h | 34 ++---
19 files changed, 549 insertions(+), 1287 deletions(-)
delete mode 100644 libs/libc/wqueue/work_lock.c
delete mode 100644 libs/libc/wqueue/work_signal.c
delete mode 100644 sched/wqueue/kwork_hpthread.c
delete mode 100644 sched/wqueue/kwork_lpthread.c
delete mode 100644 sched/wqueue/kwork_process.c
delete mode 100644 sched/wqueue/kwork_signal.c
create mode 100644 sched/wqueue/kwork_thread.c