|
From: Julian S. <js...@ac...> - 2006-01-17 15:20:00
|
One thing I've noticed recently is that V ignores control-Z's.
That hasn't always been the case. For example in this
int main ( void )
{
int i;
i = 0;
while (1) {
printf("%d\n", i);
i = i + 1;
sleep(1);
}
}
and also for compute-bound code not waiting in syscalls.
Before I go peer at what's with it ... does anyone know if this is
somehow a feature rather than a bug?
J
|
|
From: Nicholas N. <nj...@cs...> - 2006-01-17 19:37:59
|
On Tue, 17 Jan 2006, Julian Seward wrote:
> One thing I've noticed recently is that V ignores control-Z's.
> That hasn't always been the case. For example in this
>
> int main ( void )
> {
> int i;
> i = 0;
> while (1) {
> printf("%d\n", i);
> i = i + 1;
> sleep(1);
> }
> }
>
> and also for compute-bound code not waiting in syscalls.
>
> Before I go peer at what's with it ... does anyone know if this is
> somehow a feature rather than a bug?
Not that I'm aware of. I've noticed it too myself.
Nick
|