mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-25 00:11:07 +00:00
ed52d5a211
Instead of holding SPEC-variable dependent files and directories inline within the repository structure, move them into 'spec' subdirectories at the corresponding levels, e.g.: repos/base/include/spec repos/base/mk/spec repos/base/lib/mk/spec repos/base/src/core/spec ... Moreover, this commit removes the 'platform' directories. That term was used in an overloaded sense. All SPEC-relative 'platform' directories are now named 'spec'. Other files, like for instance those related to the kernel/architecture specific startup library, where moved from 'platform' directories to explicit, more meaningful places like e.g.: 'src/lib/startup'. Fix #1673
32 lines
720 B
C++
32 lines
720 B
C++
/*
|
|
* \brief CPU-specific memcpy
|
|
* \author Sebastian Sumpf
|
|
* \date 2012-08-02
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2012-2013 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__SPEC__X86__CPU__STRING_H_
|
|
#define _INCLUDE__SPEC__X86__CPU__STRING_H_
|
|
|
|
namespace Genode {
|
|
|
|
/**
|
|
* Copy memory block
|
|
*
|
|
* \param dst destination memory block
|
|
* \param src source memory block
|
|
* \param size number of bytes to copy
|
|
*
|
|
* \return number of bytes not copied
|
|
*/
|
|
inline size_t memcpy_cpu(void *, const void *, size_t size) { return size; }
|
|
}
|
|
|
|
#endif /* _INCLUDE__SPEC__X86__CPU__STRING_H_ */
|