30 lines
871 B
C
30 lines
871 B
C
/*
|
|
* Copyright 2019, Data61
|
|
* Commonwealth Scientific and Industrial Research Organisation (CSIRO)
|
|
* ABN 41 687 119 230.
|
|
*
|
|
* This software may be distributed and modified according to the terms of
|
|
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
|
|
* See "LICENSE_GPLv2.txt" for details.
|
|
*
|
|
* @TAG(DATA61_GPL)
|
|
*/
|
|
|
|
#ifndef __IPC_BUFFER_H
|
|
#define __IPC_BUFFER_H
|
|
|
|
#include <types.h>
|
|
#include <api/syscall.h>
|
|
#include <object/structures.h>
|
|
|
|
static inline time_t mode_parseTimeArg(word_t i, word_t *buffer)
|
|
{
|
|
return (((time_t) getSyscallArg(i + 1, buffer) << 32llu) + getSyscallArg(i, buffer));
|
|
}
|
|
|
|
static inline word_t mode_setTimeArg(word_t i, time_t time, word_t *buffer, tcb_t *thread)
|
|
{
|
|
setMR(thread, buffer, i, (uint32_t) time);
|
|
return setMR(thread, buffer, i + 1, (uint32_t)(time >> 32llu));
|
|
}
|
|
#endif /* __IPC_BUFFER_H */
|