📄 cache_aligned_malloc.c
字号:
/* * RTEMS Cache Aligned Malloc * * * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id: cache_aligned_malloc.c,v 1.3.6.1 2003/09/04 18:54:13 joel Exp $ */#include <rtems.h>#include <cache_.h>#include <stdlib.h>/* * rtems_cache_aligned_malloc * * DESCRIPTION: * * This function is used to allocate storage that spans an * integral number of cache blocks. */void *rtems_cache_aligned_malloc ( size_t nbytes){ /* * Arrange to have the user storage start on the first cache * block beyond the header. */#if defined(CPU_DATA_CACHE_ALIGNMENT) return (void *) ((((unsigned long) malloc( nbytes + CPU_DATA_CACHE_ALIGNMENT - 1 )) + CPU_DATA_CACHE_ALIGNMENT - 1 ) &(~(CPU_DATA_CACHE_ALIGNMENT - 1)) );#else return malloc( nbytes );#endif}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -