2011-08-24 16:46:59 +02:00
|
|
|
/****************************************************************************
|
2018-05-29 21:21:26 +02:00
|
|
|
* libs/libnx/nxcontext.h
|
2011-08-24 16:46:59 +02:00
|
|
|
*
|
2021-04-02 09:22:52 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2011-08-24 16:46:59 +02:00
|
|
|
*
|
2021-04-02 09:22:52 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-08-24 16:46:59 +02:00
|
|
|
*
|
2021-04-02 09:22:52 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2011-08-24 16:46:59 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-12-28 15:40:03 +01:00
|
|
|
#ifndef _LIBNX_NXCONTEXT_H
|
|
|
|
#define _LIBNX_NXCONTEXT_H
|
|
|
|
|
2011-08-24 16:46:59 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2013-12-28 15:40:03 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
2020-04-30 20:43:08 +02:00
|
|
|
#include <stdlib.h>
|
2013-12-28 15:40:03 +01:00
|
|
|
#include <limits.h>
|
2011-08-24 16:46:59 +02:00
|
|
|
|
2020-04-30 20:43:08 +02:00
|
|
|
#include <nuttx/kmalloc.h>
|
2013-12-28 15:40:03 +01:00
|
|
|
#include <nuttx/streams.h>
|
2011-08-24 16:46:59 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-02 22:17:29 +02:00
|
|
|
* Pre-processor Definitions
|
2011-08-24 16:46:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-30 20:43:08 +02:00
|
|
|
/* The NuttX NX library can be build in two modes: (1) as a standard, C-
|
|
|
|
* library that can be used by normal, user-space applications, or (2) as
|
|
|
|
* a special, kernel-mode NX-library only used within the OS. If NuttX is
|
|
|
|
* not being built as separated kernel- and user-space modules, then only
|
|
|
|
* the first mode is supported.
|
2013-12-28 15:40:03 +01:00
|
|
|
*/
|
2011-08-24 16:46:59 +02:00
|
|
|
|
2020-04-29 21:21:23 +02:00
|
|
|
#if !defined(CONFIG_BUILD_FLAT) && defined(__KERNEL__)
|
2014-08-29 22:47:22 +02:00
|
|
|
|
2020-04-30 20:43:08 +02:00
|
|
|
/* Domain-specific allocations */
|
2011-08-24 16:46:59 +02:00
|
|
|
|
2014-09-01 01:04:02 +02:00
|
|
|
# define lib_malloc(s) kmm_malloc(s)
|
|
|
|
# define lib_zalloc(s) kmm_zalloc(s)
|
2014-08-31 23:27:37 +02:00
|
|
|
# define lib_realloc(p,s) kmm_realloc(p,s)
|
|
|
|
# define lib_memalign(p,s) kmm_memalign(p,s)
|
2014-09-01 01:04:02 +02:00
|
|
|
# define lib_free(p) kmm_free(p)
|
2011-08-24 16:46:59 +02:00
|
|
|
|
2020-04-30 20:43:08 +02:00
|
|
|
/* User-accessible allocations */
|
2013-12-28 15:40:03 +01:00
|
|
|
|
2014-09-01 00:24:24 +02:00
|
|
|
# define lib_umalloc(s) kumm_malloc(s)
|
|
|
|
# define lib_uzalloc(s) kumm_zalloc(s)
|
2014-09-01 00:15:11 +02:00
|
|
|
# define lib_urealloc(p,s) kumm_realloc(p,s)
|
|
|
|
# define lib_ufree(p) kumm_free(p)
|
2013-12-28 15:40:03 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2020-04-30 20:43:08 +02:00
|
|
|
/* Domain-specific allocations */
|
2013-12-28 15:40:03 +01:00
|
|
|
|
|
|
|
# define lib_malloc(s) malloc(s)
|
|
|
|
# define lib_zalloc(s) zalloc(s)
|
|
|
|
# define lib_realloc(p,s) realloc(p,s)
|
|
|
|
# define lib_free(p) free(p)
|
|
|
|
|
2020-04-30 20:43:08 +02:00
|
|
|
/* User-accessible allocations */
|
2013-12-28 15:40:03 +01:00
|
|
|
|
|
|
|
# define lib_umalloc(s) malloc(s)
|
|
|
|
# define lib_uzalloc(s) zalloc(s)
|
|
|
|
# define lib_urealloc(p,s) realloc(p,s)
|
|
|
|
# define lib_ufree(p) free(p)
|
|
|
|
|
|
|
|
#endif
|
2011-08-24 16:46:59 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2013-12-28 15:40:03 +01:00
|
|
|
* Public Types
|
2011-08-24 16:46:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-03 00:30:35 +02:00
|
|
|
* Public Data
|
2011-08-24 16:46:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2013-12-28 15:40:03 +01:00
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
2011-08-24 16:46:59 +02:00
|
|
|
{
|
2013-12-28 15:40:03 +01:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
2011-08-24 16:46:59 +02:00
|
|
|
|
2013-12-28 15:40:03 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
2011-08-24 16:46:59 +02:00
|
|
|
|
2013-12-28 15:40:03 +01:00
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
2011-08-24 16:46:59 +02:00
|
|
|
}
|
2013-12-28 15:40:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _LIBNX_NXCONTEXT_H */
|