ptt_trace_skel

来自「linux下的多线程调试工具」· 代码 · 共 24 行

TXT
24
字号
#! /bin/sh# these two lines are modified during the installation process to create# ptt_traceLIBDIR=path_to_libdirBINDIR=path_to_bindirLIBGLIBC=$LIBDIR/libpthread.so.0LIBPTT=$LIBDIR/libpthread_ptt.so.0SPEC=ARGS=while [ $# != 0 ]; do    [ $1 != "-ori" ] && ARGS="$ARGS $1"    [ $1 == "-ori" ] && SPEC="-ori"    shiftdonecase $SPEC in    -ori ) LD_PRELOAD=$LIBGLIBC $ARGS ;;    *    ) $BINDIR/ptt_daemon $LIBPTT $ARGS ;;esac

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?