This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0x0: PUSH1 0x80 | |
0x2: PUSH1 0x40 | |
0x4: MSTORE | |
0x5: CALLVALUE | |
0x6: DUP1 | |
0x7: ISZERO | |
0x8: PUSH2 0x10 | |
0xb: JUMPI | |
0xc: PUSH1 0x0 | |
0xe: DUP1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Thread | |
{ | |
private $_socket; | |
private $_pid = NULL; | |
function __construct( Closure $closure ) | |
{ |