Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of azure_c_shared_utility by
condition_rtx_mbed.cpp
- Committer:
- Azure.IoT Build
- Date:
- 2016-07-01
- Revision:
- 6:c55b013dfc2a
- Parent:
- 0:fa2de1b79154
- Child:
- 19:2e0811512ceb
File content as of revision 6:c55b013dfc2a:
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#include <cstdlib>
#ifdef _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#endif
#include "azure_c_shared_utility/lock.h"
#include "azure_c_shared_utility/xlogging.h"
#include "azure_c_shared_utility/condition.h"
#include "rtos.h"
COND_HANDLE Condition_Init(void)
{
return NULL;
}
COND_RESULT Condition_Post(COND_HANDLE handle)
{
COND_RESULT result;
if (handle == NULL)
{
result = COND_INVALID_ARG;
}
else
{
}
return COND_ERROR;
}
COND_RESULT Condition_Wait(COND_HANDLE handle, LOCK_HANDLE lock, int timeout_milliseconds)
{
COND_RESULT result;
if (handle == NULL)
{
result = COND_INVALID_ARG;
}
else
{
result = COND_ERROR;
}
return result;
}
void Condition_Deinit(COND_HANDLE handle)
{
if (handle != NULL)
{
}
}
