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
//A rollover detection test | |
//Try compiling using: g++ rollovertest.cpp -02 -orollover | |
//Run as ./rollover | |
//If it hangs your GCC is not behaving correctly | |
//Based off of code seen in the HINT benchmark | |
#include <iostream> | |
int main() | |
{ | |
int i(0), j(0), iter(0); | |
i = 1; |
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
#!/sbin/runscript | |
# Released under the 2-clause BSD license. | |
description="Start and stop Plex Home Theater" | |
depend() | |
{ | |
need net | |
} |