| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 | 2 |
| 3 # A wrapper script to call 'linux-tick-processor'. | 3 # A wrapper script to call 'linux-tick-processor'. |
| 4 | 4 |
| 5 # Known issues on FreeBSD: | 5 # Known issues on FreeBSD: |
| 6 # No ticks from C++ code. | 6 # No ticks from C++ code. |
| 7 # You must have d8 built and in your path before calling this. | 7 # You must have d8 built and in your path before calling this. |
| 8 | 8 |
| 9 tools_path=`cd $(dirname "$0");pwd` | 9 tools_path=`cd $(dirname "$0");pwd` |
| 10 $tools_path/linux-tick-processor "$@" | 10 $tools_path/linux-tick-processor "$@" |
| OLD | NEW |