2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
5 Desc: AddTime() - add two timeval's together.
9 #include <timer_intern.h>
10 #include "timer_macros.h"
12 /*****************************************************************************
15 #include <devices/timer.h>
16 #include <proto/timer.h>
18 AROS_LH2(void, AddTime
,
21 AROS_LHA(struct timeval
*, dest
, A0
),
22 AROS_LHA(struct timeval
*, src
, A1
),
25 struct Device
*, TimerBase
, 7, Timer
)
28 Add two timeval's together. The result will be the sum
31 The values of A0 and A1 will not be changed.
34 dest - Destination timeval.
38 dest will contain (src + dest).
41 This function can be called from Interrupts.
53 27-11-96 digulla automatically created from
54 timer_lib.fd and clib/timer_protos.h
56 *****************************************************************************/