Random Chitchat 2012-2016
Hey,

I wasn't able to compile the current source on debian, because STDERR_FILENO wasn't found. Had to include unistd.h in StackTrace.cpp for compiling.

Do i have to use a new version of gcc or any other ideas?

Ty,
Seadragon91
Thanks given by:
@STR_Warrior: Actually the chunk in the middle is at height 255 for some reason; the usual chunk problem was the chunk being too low. Still no idea what happens there, I'll investigate once I fix the cSpawnPrepare segfault.

@Seadragon91: It's possible that the include needs to be added, I just followed some online code and tried it out on my Ubuntu 12; other OSes may require additional stuff or even a different code path altogether. Feel free to
Thanks given by:
(11-30-2014, 10:54 PM)xoft Wrote: @Seadragon91: It's possible that the include needs to be added, I just followed some online code and tried it out on my Ubuntu 12; other OSes may require additional stuff or even a different code path altogether. Feel free to

...spontaneously combust.

Relevant username also.
Thanks given by:
oh well, tabbed browsing, I start typing an answer, look sideways for some info, find another thing to write, needing another piece of info.... and when I get back through the chain, I post without reading Sad

@Howaner already fixed it: https://github.com/mc-server/MCServer/co...ada85fadff
Thanks given by:
I wouldn't have believed it, but I'm debugging on Linux big time nowadays Smile I found a nice piece of software, MobaXterm, that provides an SSH terminal together with X11 server for windows, so I can connect to my Linux laptop and start qtcreator over this connection and have it displayed on my desktop's big screen. Now, qtcreator is not as great as MSVC, but it's much better than editting individual files by an editor and launching make to compile. I won't even mention the ugly gdb interface; qtcreator is nowhere near MSVC here, but still is a thousand times better than command line Smile
And I think I've finally found the reason for the "empty spawn chunk" problem using this weird setup.
Thanks given by:
Do you know far lands in mincecraft?
http://minecraft.gamepedia.com/Far_Lands

Very funny thing, this appears in older versions of minecraft.

I teleported me to this coords in mc server:
30000000 100 30000000

This thing has appeared in my worldBig Grin:
http://minecraft.gamepedia.com/World_border
I am not able to move anymore.

Edit: Okay did a few more tests in mc server. The generator do crazy things at 50k blocksBig Grin
http://i.imgur.com/BagGwTY.png

Edit 2: Opened a own thread for that problem
Thanks given by:
I decided to give Lua Multithreading one more chance, so I tried to measure the performance impact of the mutex locking required for the thread safety, considering our current code. For this, I adapted code from my LuaMultiThreaded project ( https://github.com/madmaxoft/LuaMultiThreaded ) and let it measure the overall count of LuaLock calls. The numbers are bad:
Server startup and immediate shutdown: ~430'000 locks
One webadmin page requested: 1'500 - 2'500 locks
Initializing the Core: 5'000 locks
Initializing the Gallery: 24'000 locks
Core's OnTick handler (for the "tps" command"): 68 locks each call

I'm afraid that making this run multithreaded will kill the server performance-wise. The locks are just too much contended. Unfortunately Lua's locking is too fine-grained and thus doesn't scale well.
I have pushed my code to the LuaMultiThreadedLockCount branch; I don't expect it to be merged to master, in fact, I don't even expect it to compile under Linux.
Thanks given by:
So If we want multithreading for plugins we probably have to make multiple LuaStates for a plugin? That's a bummer Sad
Thanks given by:
I don't really know, I have no idea how much of a performance bottleneck those locks mean. So unless I try it, I won't know. Additionally, the branch doesn't compile under Linux, so we'd need a fix for that as well. I can't access Travis now for an unknown reason, so I don't even see the error message.
Thanks given by:
After reading up a bit on the topic, it seems that such lock counts are not that bad, actually. We just might get away with it.
Ref.: http://preshing.com/20111118/locks-arent...ention-is/
Thanks given by:




Users browsing this thread: 38 Guest(s)