more windows build fixes

This commit is contained in:
Evan Tschannen 2018-10-19 17:00:24 -07:00
parent 888378c8cb
commit 1ef29cbf0d
2 changed files with 0 additions and 10 deletions

View File

@ -164,15 +164,6 @@ void Coro_setStackSize_(Coro *self, size_t sizeInBytes)
//printf("Coro_%p io_reallocating stack size %i\n", (void *)self, sizeInBytes);
}
#if __GNUC__ == 4
uint8_t *Coro_CurrentStackPointer(void) __attribute__ ((noinline));
#endif
uint8_t *Coro_CurrentStackPointer(void)
{
return __builtin_frame_address(0);
}
size_t Coro_bytesLeftOnStack(Coro *self)
{
unsigned char dummy;

View File

@ -33,7 +33,6 @@
#include "IKeyValueStore.h"
#include "PrefixTree.h"
#include <string.h>
#include <boost/asio.hpp>
#include "flow/actorcompiler.h"
// Convenience method for converting a Standalone to a Ref while adding its arena to another arena.