[examples] remove unneeded implementation otTaskletsSignalPending (#10849)

The implementation of `otTaskletsSignalPending` in
`examples/apps/<app>/main.c` is exactly the same as the weak
implementation in `tasklet_api.cpp`. No need to repeat it and blocking
other implementations of that function.
This commit is contained in:
Thomas
2024-10-21 13:51:19 +01:00
committed by GitHub
parent 8806dbc100
commit 5bd9de5f30
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -60,8 +60,6 @@ OT_TOOL_WEAK void *otPlatCAlloc(size_t aNum, size_t aSize) { return calloc(aNum,
OT_TOOL_WEAK void otPlatFree(void *aPtr) { free(aPtr); }
#endif
void otTaskletsSignalPending(otInstance *aInstance) { OT_UNUSED_VARIABLE(aInstance); }
#if OPENTHREAD_POSIX && !defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION)
static otError ProcessExit(void *aContext, uint8_t aArgsLength, char *aArgs[])
{