Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Qt & SFML  (Read 10387 times)

0 Members and 2 Guests are viewing this topic.

Law

  • Jr. Member
  • **
  • Posts: 73
    • View Profile
Re: Qt & SFML
« Reply #30 on: October 05, 2015, 01:10:08 pm »
What do you mean? I'm basically launching this function:

void Handler(int sig)
{
        std::cout << "Aborting..." << std::endl;
        void *array[10];
        size_t size;
        // get void*'s for all entries on the stack
        size = backtrace(array, 10);
        // print out all the frames to stderr
        fprintf(stderr, "Error: signal %d:\n", sig);
        backtrace_symbols_fd(array, size, STDERR_FILENO);
        exit(1);
}