2015-12-13 00:51:54 +08:00
|
|
|
/****************************************************************************
|
2017-01-23 04:26:22 +08:00
|
|
|
* sched/module/mod_rmmod.c
|
2015-12-13 00:51:54 +08:00
|
|
|
*
|
2024-09-11 19:45:11 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
2021-02-08 23:33:58 +08: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
|
2015-12-13 00:51:54 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-12-13 00:51:54 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08: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.
|
2015-12-13 00:51:54 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <nuttx/module.h>
|
2017-01-29 22:24:42 +08:00
|
|
|
#include <nuttx/lib/modlib.h>
|
2015-12-13 00:51:54 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_MODULE
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: rmmod
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Remove a previously installed module from memory.
|
|
|
|
*
|
2015-12-13 07:42:25 +08:00
|
|
|
* Input Parameters:
|
2017-01-23 04:26:22 +08:00
|
|
|
* handle - The module handler previously returned by insmod().
|
2015-12-13 07:42:25 +08:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success. On any failure, -1 (ERROR) is returned the
|
|
|
|
* errno value is set appropriately.
|
|
|
|
*
|
2015-12-13 00:51:54 +08:00
|
|
|
****************************************************************************/
|
|
|
|
|
2017-01-23 04:26:22 +08:00
|
|
|
int rmmod(FAR void *handle)
|
2015-12-13 00:51:54 +08:00
|
|
|
{
|
2024-04-29 19:59:34 +08:00
|
|
|
return modlib_remove(handle);
|
2015-12-13 00:51:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_MODULE */
|