Module: xenomai-forge
Branch: next
Commit: 66359d03a19601e0bfc9b26ef8f02f3da10b32a1
URL:    
http://git.xenomai.org/?p=xenomai-forge.git;a=commit;h=66359d03a19601e0bfc9b26ef8f02f3da10b32a1

Author: Philippe Gerum <r...@xenomai.org>
Date:   Wed Jun 11 19:59:31 2014 +0200

doc: initial overhaul of the doxygen-based contents

---

 doc/doxygen/manual-common.conf.in                  |   48 +-
 include/alchemy/alarm.h                            |    7 +
 include/alchemy/buffer.h                           |    9 +-
 include/alchemy/cond.h                             |    7 +
 include/alchemy/event.h                            |   11 +-
 include/alchemy/heap.h                             |    9 +-
 include/alchemy/mutex.h                            |    7 +
 include/alchemy/pipe.h                             |   11 +-
 include/alchemy/queue.h                            |   11 +-
 include/alchemy/sem.h                              |    9 +-
 include/alchemy/task.h                             |   16 +-
 include/alchemy/timer.h                            |    7 +
 include/cobalt/kernel/apc.h                        |   12 +-
 include/cobalt/kernel/bufd.h                       |   13 +-
 include/cobalt/kernel/clock.h                      |   10 +-
 include/cobalt/kernel/lock.h                       |    4 +-
 include/cobalt/kernel/map.h                        |   10 +-
 include/cobalt/kernel/rtdm/analogy/channel_range.h |    6 +-
 include/cobalt/kernel/rtdm/driver.h                |  474 +++---------------
 include/cobalt/kernel/sched.h                      |   10 +-
 include/cobalt/kernel/select.h                     |   12 +-
 include/cobalt/kernel/timer.h                      |    9 +-
 include/cobalt/kernel/vfile.h                      |   10 +-
 include/cobalt/uapi/kernel/thread.h                |   12 +-
 include/rtdm/analogy.h                             |    2 +-
 include/rtdm/can.h                                 |   44 +-
 include/rtdm/rtdm.h                                |   42 +-
 include/rtdm/serial.h                              |   20 +-
 include/rtdm/testing.h                             |   20 +-
 include/rtdm/uapi/analogy.h                        |   10 +-
 include/rtdm/uapi/can.h                            |   11 +-
 include/rtdm/uapi/ipc.h                            |    6 +-
 include/rtdm/uapi/rtdm.h                           |   11 +-
 kernel/cobalt/apc.c                                |   26 +-
 kernel/cobalt/arith.c                              |   16 +-
 kernel/cobalt/bufd.c                               |   22 +-
 kernel/cobalt/clock.c                              |   15 +-
 kernel/cobalt/debug.c                              |   13 +-
 kernel/cobalt/heap.c                               |   47 +-
 kernel/cobalt/init.c                               |   13 +-
 kernel/cobalt/intr.c                               |   11 +-
 kernel/cobalt/lock.c                               |   13 +-
 kernel/cobalt/map.c                                |   21 +-
 kernel/cobalt/posix/clock.c                        |   55 ---
 kernel/cobalt/posix/cond.c                         |   80 ---
 kernel/cobalt/posix/event.c                        |   19 +-
 kernel/cobalt/posix/init.c                         |   29 --
 kernel/cobalt/posix/monitor.c                      |   22 +-
 kernel/cobalt/posix/mqueue.c                       |  229 ---------
 kernel/cobalt/posix/mutex.c                        |   33 --
 kernel/cobalt/posix/nsem.c                         |   93 ++--
 kernel/cobalt/posix/sched.c                        |  117 -----
 kernel/cobalt/posix/sem.c                          |  285 +----------
 kernel/cobalt/posix/sem.h                          |    2 +-
 kernel/cobalt/posix/thread.c                       |  255 ----------
 kernel/cobalt/posix/timer.c                        |  124 -----
 kernel/cobalt/registry.c                           |   29 +-
 kernel/cobalt/rtdm/core.c                          |  510 ++++++++++++++++++--
 kernel/cobalt/rtdm/device.c                        |   16 +-
 kernel/cobalt/rtdm/drvlib.c                        |   96 ++--
 kernel/cobalt/rtdm/init.c                          |   16 +-
 kernel/cobalt/sched-quota.c                        |   41 +-
 kernel/cobalt/select.c                             |   27 +-
 kernel/cobalt/shadow.c                             |   17 +-
 kernel/cobalt/synch.c                              |   17 +-
 kernel/cobalt/thread.c                             |   10 +-
 kernel/cobalt/timer.c                              |   32 +-
 kernel/cobalt/vfile.c                              |   26 +-
 kernel/drivers/analogy/driver_facilities.c         |   58 ++-
 lib/alchemy/alarm.c                                |   36 +-
 lib/alchemy/buffer.c                               |   43 +-
 lib/alchemy/cond.c                                 |   70 +--
 lib/alchemy/event.c                                |   49 +-
 lib/alchemy/heap.c                                 |   32 +-
 lib/alchemy/init.c                                 |    9 +
 lib/alchemy/mutex.c                                |   47 +-
 lib/alchemy/pipe.c                                 |   58 ++-
 lib/alchemy/queue.c                                |   39 +-
 lib/alchemy/sem.c                                  |   44 +-
 lib/alchemy/task.c                                 |   15 +
 lib/alchemy/timer.c                                |   11 +
 lib/analogy/async.c                                |   12 +-
 lib/analogy/descriptor.c                           |    8 +-
 lib/analogy/range.c                                |    4 +-
 lib/analogy/sync.c                                 |   16 +-
 lib/analogy/sys.c                                  |   22 +-
 lib/cobalt/clock.c                                 |   41 ++
 lib/cobalt/cond.c                                  |   82 ++++
 lib/cobalt/init.c                                  |    8 +
 lib/cobalt/mq.c                                    |  236 ++++++++-
 lib/cobalt/mutex.c                                 |   34 ++
 lib/cobalt/semaphore.c                             |  283 +++++++++++
 lib/cobalt/thread.c                                |  422 ++++++++++++++--
 lib/cobalt/timer.c                                 |  125 +++++
 94 files changed, 2646 insertions(+), 2435 deletions(-)

Diff:   
http://git.xenomai.org/?p=xenomai-forge.git;a=commitdiff;h=66359d03a19601e0bfc9b26ef8f02f3da10b32a1

_______________________________________________
Xenomai-git mailing list
Xenomai-git@xenomai.org
http://www.xenomai.org/mailman/listinfo/xenomai-git

Reply via email to