Author Topic: Error  (Read 2424 times)

Offline Echo

  • Single posting newcomer
  • *
  • Posts: 2
Error
« on: September 23, 2010, 09:47:20 pm »
Process terminated with status 255

what does this mean?

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Error
« Reply #1 on: September 23, 2010, 09:52:16 pm »
Process terminated with status 255

what does this mean?
The process you ran returned the exit code 255.

e.g.:
Code
int main(void)
{
  return 255;
}

...will do exactly this.

The exact interpretation of this code nobody except either the documentation of that program or the developer of tat program can provide. Please ask the appropriate person therefore. thanks.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ