forked from zhuowei/WDBDDISSH
-
Notifications
You must be signed in to change notification settings - Fork 71
/
com.apple.debugserver.plist
39 lines (35 loc) · 978 Bytes
/
com.apple.debugserver.plist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.apple.debugserver</string>
<key>POSIXSpawnType</key>
<string>Interactive</string>
<key>ProcessType</key>
<string>Interactive</string>
<key>ProgramArguments</key>
<array>
<string>/Developer/usr/bin/debugserver</string>
<string>--fd</string>
<string>0</string>
</array>
<key>StandardOutPath</key>
<string>/dev/null</string>
<key>StandardErrorPath</key>
<string>/dev/null</string>
<key>Sockets</key>
<dict>
<key>DebugServerSocket</key>
<dict>
<key>SockServiceName</key>
<string>24601</string>
</dict>
</dict>
<key>inetdCompatibility</key>
<dict>
<key>Wait</key>
<false/>
</dict>
</dict>
</plist>