PROC_NOFREEZE

Posted By: Superku

PROC_NOFREEZE - 02/17/11 02:25

Quote:
PROC_NOFREEZE didn't work properly (fixed in 8.03.2)

Does PROC_NOFREEZE work for anyone? If so, could you please provide a small working example?
Thanks!
Posted By: Logan

Re: PROC_NOFREEZE - 02/17/11 05:24

I've tried using it a few times and it never worked. I had to resort to workarounds each time. I didn't want to report it as a bug because I always post bug reports that end up being my fault and then I look like an idiot.
Posted By: MrGuest

Re: PROC_NOFREEZE - 02/18/11 01:28

Originally Posted By: Logan
I've tried using it a few times and it never worked. I had to resort to workarounds each time. I didn't want to report it as a bug because I always post bug reports that end up being my fault and then I look like an idiot.
lol, welcome to my world

here's what i tried a while ago but didn't get it working, didn't really need it though so never reported it

Code:
#include <acknex.h>
#include <default.c>

void func_willFreeze(){
	
	while(1){
		
		DEBUG_VAR(1, 40);
		wait(1);
	}
}

void func_wontFreeze(){
	
	while(1){
		
		proc_mode = PROC_NOFREEZE;
		DEBUG_VAR(1, 80);
		wait(1);
	}
}

void freeze_toggle(){
	freeze_mode = 2 - freeze_mode;
}


void main(){
	
	on_f = freeze_toggle;
	
	func_willFreeze();
	func_wontFreeze();
}


Posted By: Superku

Re: PROC_NOFREEZE - 02/22/11 16:34

Originally Posted By: JCL
This is indeed still the PROC_NOFREEZE bug. It was listed as fixed, but for some reason the fix never made it into the release. I promise that it will be included in the next release.

Posted By: pegamode

Re: PROC_NOFREEZE - 05/27/11 15:14

Hmmm ... I still don't get PROC_NOFREEZE working, although it should be fixed in the current version.

Can someone confirm that it was fixed this time?

Regards,
Pegamode.
Posted By: picoder

Re: PROC_NOFREEZE - 05/30/11 12:30

I tested it by v8.20.1 but PROC_NOFREEZE still doesn't work.
Posted By: pegamode

Re: PROC_NOFREEZE - 06/01/11 15:55

It was my fault.

PROC_NOFREEZE works ins v8.20.1.

For for information take a look here:

http://www.opserver.de/ubb7/ubbthreads.php?ubb=showflat&topic=44816

Regards,
Pegamode.
© 2024 lite-C Forums