• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Assertion `!ret' failed.

klepacz

New Member
Joined
Aug 12, 2015
Messages
35
Reaction score
0
TFS 0.4 rev3884
Debian 8
libboost-dev_1.55.0.2_amd64.deb

[0:11:51.851] >> Everything smells good, server is starting up...
[0:11:51.851] >> Forgotten server Online!

theforgottenserver: /usr/include/boost/thread/pthread/condition_variable_fwd.hpp:81: boost::condition_variable::~condition_variable(): Assertion `!ret' failed.
Aborted

I've checked that destructor, tried to edit some things but it didn't help.
Any ideas ?
 
where to put " killall -9 theforgottenserver"??

Code:
#ifndef BOOST_THREAD_CONDITION_VARIABLE_HPP
#define BOOST_THREAD_CONDITION_VARIABLE_HPP

//  condition_variable.hpp
//
//  (C) Copyright 2007 Anthony Williams
//
//  Distributed under the Boost Software License, Version 1.0. (See
//  accompanying file LICENSE_1_0.txt or copy at
//  http://www.boost.org/LICENSE_1_0.txt)

#include <boost/thread/detail/platform.hpp>
#if defined(BOOST_THREAD_PLATFORM_WIN32)
#include <boost/thread/win32/condition_variable.hpp>
#elif defined(BOOST_THREAD_PLATFORM_PTHREAD)
#include <boost/thread/pthread/condition_variable.hpp>
#else
#error "Boost threads unavailable on this platform"
#endif

#endif
 
Last edited:
Back
Top