Zeex

Results 43 comments of Zeex

Ended up implementing it a little differently in master.

It looks like you need to install `bcrypt` plugin. As for the "long callback execution" - this is just a warning that says that the code in your `OnFilterScriptInit2` callback...

Should be possible now with this: https://github.com/Zeex/samp-plugin-crashdetect/commit/bbea212ce8c11e9b66d7c5b964040ec23c844adf Now basically whatever you return in `OnRuntimeError` is returned to the server like if you return from the public itself. You can make...

Can you copy the stack trace from your local debug build and post it here so I could see where it crashed? You'll need to run samp-server.exe under Visual Studio...

I've added a little more logging, it may shed some light on what's going on. Can you please try the new version? (you'll need to build from source)

Can you build profiler with debug symbols and run it under a debugger (WinDbg or Visual Studio)? That would give more much information.

It should transition from STARTING to STARTED on the next call to some public function (i.e. next time amx_Exec is called by the server). It's strange that this didn't work......

Here is a debug build of profiler: https://ci.appveyor.com/project/Zeex/samp-plugin-profiler/build/8/artifacts With the pdb file crashdetect should be able to tell function names in the backtrace, you'll need to put profiler.pdb to plugins...

Ah, it's call graph again... This probably is the most buggy part of the plugin. Disabling it should help I guess, although that's not a solution. I'll see if I...

Have you tried some older version of profiler? Perhaps I added some bug in latest ones. If changing the order of plugins doesn't help I'm really out of ideas...