blob: 716ba60a0524701877a5d351d74750f4d8fc9879 [file] [log] [blame]
/**
* Copyright (c) 2015 Runtime Inc.
*
* Licensed 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 _OS_MUTEX_H_
#define _OS_MUTEX_H_
#include "os/os.h"
#include "os/queue.h"
struct os_mutex
{
uint8_t _pad;
uint8_t mu_prio; /* owner's default priority*/
uint16_t mu_level; /* call nesting level */
struct os_task *mu_owner; /* owners task */
SLIST_HEAD(, os_task) mu_head; /* chain of waiting tasks */
};
/*
XXX: NOTES
-> Should we add a magic number or flag to the mutex structure so
that we know that this is a mutex? We can use it for double checking
that a proper mutex was passed in to the API.
-> What debug information should we add to this structure? Who last
acquired the mutex? File/line where it was released?
-> Should we add a name to the mutex?
-> Should we add a "os_mutex_inspect() api?
*/
/* XXX: api to create
os_mutex_inspect();
*/
/* Initialize a mutex */
os_error_t os_mutex_init(struct os_mutex *mu);
/* Release a mutex */
os_error_t os_mutex_release(struct os_mutex *mu);
/* Pend (wait) for a mutex */
os_error_t os_mutex_pend(struct os_mutex *mu, uint32_t timeout);
/* Delete a mutex */
os_error_t os_mutex_delete(struct os_mutex *mu);
#endif /* _OS_MUTEX_H_ */