Author Topic: Error  (Read 4062 times)

Echo

  • Guest
Error
« on: September 23, 2010, 09:47:20 pm »
Process terminated with status 255

what does this mean?

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9724
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