Re: [PHP-DEV] ZEND_USER_OPCODE_CONTINUE

2009-02-17 Thread Johannes Schlüter
Stefan, On Tue, 2009-02-17 at 22:05 +0100, Stefan Esser wrote: > > while implementing a small toy extension (see [1]) I found out that > > ZEND_USER_OPCODE_CONTINUE seems to misbehave as it doesn't go to the > > next opcode so I ended up in an endless loop executing the same opcode > > again and

Re: [PHP-DEV] ZEND_USER_OPCODE_CONTINUE

2009-02-17 Thread Christian Seiler
Hi Johannes, > while implementing a small toy extension (see [1]) I found out that > ZEND_USER_OPCODE_CONTINUE seems to misbehave as it doesn't go to the > next opcode so I ended up in an endless loop executing the same opcode > again and again. Isn't that expected behaviour? If a normal opcode h

Re: [PHP-DEV] ZEND_USER_OPCODE_CONTINUE

2009-02-17 Thread Stefan Esser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Johannes, > while implementing a small toy extension (see [1]) I found out that > ZEND_USER_OPCODE_CONTINUE seems to misbehave as it doesn't go to the > next opcode so I ended up in an endless loop executing the same opcode > again and again. I gu

[PHP-DEV] ZEND_USER_OPCODE_CONTINUE

2009-02-17 Thread Johannes Schlüter
Hi, while implementing a small toy extension (see [1]) I found out that ZEND_USER_OPCODE_CONTINUE seems to misbehave as it doesn't go to the next opcode so I ended up in an endless loop executing the same opcode again and again. I'm not sure whether we should change the behavior, using a trivial