summaryrefslogtreecommitdiffstats
path: root/doc/itron3.0/time.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-17 18:45:36 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-17 18:45:36 +0000
commit11be37d1e3d5cf3093f4eceede267d7e903512aa (patch)
tree989c06ca6b20d1736de707f525e0a09f81e70cd8 /doc/itron3.0/time.t
parent2010-06-17 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-11be37d1e3d5cf3093f4eceede267d7e903512aa.tar.bz2
2010-06-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, index.html.in, develenv/direct.t, posix_users/gen_size_report, started/nextstep.t, started_ada/buildada.t, user/conf.t, user/object.t: Remove ITRON API. * itron3.0/.cvsignore, itron3.0/Makefile.am, itron3.0/config.t, itron3.0/eventflags.t, itron3.0/fixedblock.t, itron3.0/gen_all, itron3.0/gen_section, itron3.0/gen_status_shell, itron3.0/interrupt.t, itron3.0/itron.texi, itron3.0/mailbox.t, itron3.0/memorypool.t, itron3.0/msgbuffer.t, itron3.0/network.t, itron3.0/preface.texi, itron3.0/rendezvous.t, itron3.0/semaphore.t, itron3.0/stamp-vti, itron3.0/status.t, itron3.0/task.t, itron3.0/tasksync.t, itron3.0/time.t, itron3.0/version.texi: Removed.
Diffstat (limited to '')
-rw-r--r--doc/itron3.0/time.t310
1 files changed, 0 insertions, 310 deletions
diff --git a/doc/itron3.0/time.t b/doc/itron3.0/time.t
deleted file mode 100644
index c542889cbd..0000000000
--- a/doc/itron3.0/time.t
+++ /dev/null
@@ -1,310 +0,0 @@
-@c
-@c COPYRIGHT (c) 1988-2002.
-@c On-Line Applications Research Corporation (OAR).
-@c All rights reserved.
-@c
-@c This is the chapter from the RTEMS ITRON User's Guide that
-@c documents the services provided by the time
-@c manager.
-@c
-@c $Id$
-@c
-
-@chapter Time Manager
-
-@section Introduction
-
-The
-time manager is ...
-
-The services provided by the time manager are:
-
-@itemize @bullet
-@item @code{get_tim} - Get System Clock
-@item @code{set_tim} - Set System Clock
-@item @code{dly_tsk} - Delay Task
-@item @code{def_cyc} - Define Cyclic Handler
-@item @code{act_cyc} - Activate Cyclic Handler
-@item @code{ref_cyc} - Reference Cyclic Handler Status
-@item @code{def_alm} - Define Alarm Handler
-@item @code{ref_alm} - Reference Alarm Handler Status
-@item @code{ret_tmr} - Return from Timer Handler
-@end itemize
-
-@section Background
-
-@section Operations
-
-@section System Calls
-
-This section details the time manager's services.
-A subsection is dedicated to each of this manager's services
-and describes the calling sequence, related constants, usage,
-and status codes.
-
-
-@c
-@c get_tim
-@c
-
-@page
-@subsection get_tim - Get System Clock
-
-@subheading CALLING SEQUENCE:
-
-@ifset is-C
-@example
-ER get_tim(
- SYSTIME *pk_tim
-);
-@end example
-@end ifset
-
-@ifset is-Ada
-@end ifset
-
-@subheading STATUS CODES:
-
-@code{EXXX} -
-
-@subheading DESCRIPTION:
-
-@subheading NOTES:
-
-
-@c
-@c set_tim
-@c
-
-@page
-@subsection set_tim - Set System Clock
-
-@subheading CALLING SEQUENCE:
-
-@ifset is-C
-@example
-ER set_tim(
- SYSTIME *pk_tim
-);
-@end example
-@end ifset
-
-@ifset is-Ada
-@end ifset
-
-@subheading STATUS CODES:
-
-@code{EXXX} -
-
-@subheading DESCRIPTION:
-
-@subheading NOTES:
-
-
-@c
-@c dly_tsk
-@c
-
-@page
-@subsection dly_tsk - Delay Task
-
-@subheading CALLING SEQUENCE:
-
-@ifset is-C
-@example
-ER dly_tsk(
- DLYTIME dlytim
-);
-@end example
-@end ifset
-
-@ifset is-Ada
-@end ifset
-
-@subheading STATUS CODES:
-
-@code{EXXX} -
-
-@subheading DESCRIPTION:
-
-@subheading NOTES:
-
-
-@c
-@c def_cyc
-@c
-
-@page
-@subsection def_cyc - Define Cyclic Handler
-
-@subheading CALLING SEQUENCE:
-
-@ifset is-C
-@example
-ER def_cyc(
- HNO cycno,
- T_DCYC *pk_dcyc
-);
-@end example
-@end ifset
-
-@ifset is-Ada
-@end ifset
-
-@subheading STATUS CODES:
-
-@code{EXXX} -
-
-@subheading DESCRIPTION:
-
-@subheading NOTES:
-
-
-@c
-@c act_cyc
-@c
-
-@page
-@subsection act_cyc - Activate Cyclic Handler
-
-@subheading CALLING SEQUENCE:
-
-@ifset is-C
-@example
-ER act_cyc(
- HNO cycno,
- UINT cycact
-);
-@end example
-@end ifset
-
-@ifset is-Ada
-@end ifset
-
-@subheading STATUS CODES:
-
-@code{EXXX} -
-
-@subheading DESCRIPTION:
-
-@subheading NOTES:
-
-
-@c
-@c ref_cyc
-@c
-
-@page
-@subsection ref_cyc - Reference Cyclic Handler Status
-
-@subheading CALLING SEQUENCE:
-
-@ifset is-C
-@example
-ER ref_cyc(
- T_RCYC *pk_rcyc,
- HNO cycno
-);
-@end example
-@end ifset
-
-@ifset is-Ada
-@end ifset
-
-@subheading STATUS CODES:
-
-@code{EXXX} -
-
-@subheading DESCRIPTION:
-
-@subheading NOTES:
-
-
-@c
-@c def_alm
-@c
-
-@page
-@subsection def_alm - Define Alarm Handler
-
-@subheading CALLING SEQUENCE:
-
-@ifset is-C
-@example
-ER def_alm(
- HNO almno,
- T_DALM *pk_dalm
-);
-@end example
-@end ifset
-
-@ifset is-Ada
-@end ifset
-
-@subheading STATUS CODES:
-
-@code{EXXX} -
-
-@subheading DESCRIPTION:
-
-@subheading NOTES:
-
-
-@c
-@c ref_alm
-@c
-
-@page
-@subsection ref_alm - Reference Alarm Handler Status
-
-@subheading CALLING SEQUENCE:
-
-@ifset is-C
-@example
-ER ref_alm(
- T_RALM *pk_ralm,
- HNO almno
-);
-@end example
-@end ifset
-
-@ifset is-Ada
-@end ifset
-
-@subheading STATUS CODES:
-
-@code{EXXX} -
-
-@subheading DESCRIPTION:
-
-@subheading NOTES:
-
-
-@c
-@c ret_tmr
-@c
-
-@page
-@subsection ret_tmr - Return from Timer Handler
-
-@subheading CALLING SEQUENCE:
-
-@ifset is-C
-@example
-void ret_tmr(
-
-);
-@end example
-@end ifset
-
-@ifset is-Ada
-@end ifset
-
-@subheading STATUS CODES:
-
-@code{EXXX} -
-
-@subheading DESCRIPTION:
-
-@subheading NOTES:
-