2007-06-30 17:05:44 +00:00
|
|
|
/****************************************************************************
|
2014-08-08 13:53:29 -06:00
|
|
|
* sched/environ/env_clearenv.c
|
2007-06-30 17:05:44 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +01: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
|
2007-06-30 17:05:44 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-06-30 17:05:44 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +01: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.
|
2007-06-30 17:05:44 +00:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#ifndef CONFIG_DISABLE_ENVIRON
|
|
|
|
|
|
|
|
#include <sched.h>
|
|
|
|
#include <stdlib.h>
|
2021-05-18 14:59:14 +08:00
|
|
|
#include <assert.h>
|
|
|
|
|
2014-08-08 17:53:55 -06:00
|
|
|
#include "sched/sched.h"
|
2014-08-08 13:53:29 -06:00
|
|
|
#include "environ/environ.h"
|
2007-06-30 17:05:44 +00:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-07-14 19:30:31 +00:00
|
|
|
* Name: clearenv
|
2007-06-30 17:05:44 +00:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The clearenv() function clears the environment of all name-value pairs
|
|
|
|
* and sets the value of the external variable environ to NULL.
|
2007-06-30 19:39:17 +00:00
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2007-06-30 17:05:44 +00:00
|
|
|
* None
|
|
|
|
*
|
2018-02-01 10:00:02 -06:00
|
|
|
* Returned Value:
|
2007-06-30 17:05:44 +00:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Not called from an interrupt handler
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int clearenv(void)
|
|
|
|
{
|
2016-02-06 17:44:41 -06:00
|
|
|
FAR struct tcb_s *tcb = this_task();
|
2013-01-26 23:49:02 +00:00
|
|
|
DEBUGASSERT(tcb->group);
|
|
|
|
|
|
|
|
env_release(tcb->group);
|
2013-01-25 23:21:27 +00:00
|
|
|
return OK;
|
2007-06-30 17:05:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_DISABLE_ENVIRON */
|