aos/include/arch/aarch64/aos/bulk_transfer_arch.h
Daniel Schwyn 6d444bf552 Main handout
Signed-off-by: Daniel Schwyn <daniel.schwyn@inf.ethz.ch>
2022-03-03 14:57:51 +01:00

29 lines
620 B
C

/**
* \file
* \brief Unidirectional bulk data transfer via shared memory
*/
/*
* Copyright (c) 2009, 2010, 2015, ETH Zurich.
* All rights reserved.
*
* This file is distributed under the terms in the attached LICENSE file.
* If you do not find this file, copies can be found by writing to:
* ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
*/
#ifndef ARCH_BULK_TRANSFER_H
#define ARCH_BULK_TRANSFER_H
static inline void bulk_arch_prepare_send(void *mem, size_t size)
{
// No-op
}
static inline void bulk_arch_prepare_recv(void *mem, size_t size)
{
// No-op
}
#endif