b283289986
Signed-off-by: Juha Niskanen <juha.niskanen@haltian.com>
91 lines
3.3 KiB
C
91 lines
3.3 KiB
C
/****************************************************************************
|
|
* apps/include/builtin/builtin.h
|
|
*
|
|
* 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __APPS_INCLUDE_BUILTIN_BUILTIN_H
|
|
#define __APPS_INCLUDE_BUILTIN_BUILTIN_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <nuttx/lib/builtin.h>
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Types
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Data
|
|
****************************************************************************/
|
|
|
|
#undef EXTERN
|
|
#if defined(__cplusplus)
|
|
#define EXTERN extern "C"
|
|
extern "C"
|
|
{
|
|
#else
|
|
#define EXTERN extern
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Public Functions Prototypes
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: exec_builtin
|
|
*
|
|
* Description:
|
|
* Executes builtin applications registered during 'make context' time.
|
|
* New application is run in a separate task context (and thread).
|
|
*
|
|
* Input Parameter:
|
|
* filename - Name of the linked-in binary to be started.
|
|
* argv - Argument list
|
|
* redirfile - If output is redirected, this parameter will be non-NULL
|
|
* and will provide the full path to the file.
|
|
* oflags - If output is redirected, this parameter will provide the
|
|
* open flags to use. This will support file replacement
|
|
* of appending to an existing file.
|
|
*
|
|
* Returned Value:
|
|
* This is an end-user function, so it follows the normal convention:
|
|
* Returns the PID of the exec'ed module. On failure, it returns
|
|
* -1 (ERROR) and sets errno appropriately.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int exec_builtin(FAR const char *appname, FAR char * const *argv,
|
|
FAR const char *redirfile, int oflags);
|
|
|
|
#undef EXTERN
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* __APPS_INCLUDE_BUILTIN_BUILTIN_H */
|