Ignore:
Timestamp:
2019-07-24T11:44:40Z (5 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a448937, f42ee6f
Parents:
9fb280c (diff), 8c0b781 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jaroslav Jindrak <Dzejrou@…> (2019-07-24 11:44:40)
git-committer:
GitHub <noreply@…> (2019-07-24 11:44:40)
Message:

Merge pull request #171 from Dzejrou/hackweek

C++ stdlib: <future>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/src/__bits/runtime.cpp

    r9fb280c r9fe2fd7  
    2828
    2929#include <__bits/abi.hpp>
     30#include <cassert>
    3031#include <cstdlib>
    3132#include <cstdint>
     
    207208    extern "C" void __cxa_end_cleanup()
    208209    { /* DUMMY BODY */ }
     210
     211    extern "C" int __cxa_thread_atexit(void(*)(void*), void*, void*)
     212    {
     213        // TODO: needed for thread_local variables
     214        __unimplemented();
     215        return 0;
     216    }
    209217}
Note: See TracChangeset for help on using the changeset viewer.