equal
deleted
inserted
replaced
|
1 # setcritical.cif |
|
2 # |
|
3 # Copyright (c) 2010 Accenture. All rights reserved. |
|
4 # This component and the accompanying materials are made available |
|
5 # under the terms of the "Eclipse Public License v1.0" |
|
6 # which accompanies this distribution, and is available |
|
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 # |
|
9 # Initial Contributors: |
|
10 # Accenture - Initial contribution |
|
11 # |
|
12 |
|
13 ==name setcritical |
|
14 |
|
15 ==short-description |
|
16 |
|
17 Sets the User::TCritcal attribute of a thread. |
|
18 |
|
19 ==long-description |
|
20 |
|
21 To make thread 42 system critical, do C<setcritical --system --critical 42>. To set a thread as not critical, do C<setcritical 42>. |
|
22 |
|
23 ==argument uint threadid multiple |
|
24 |
|
25 Id of the thread(s) to change. |
|
26 |
|
27 ==option bool s system |
|
28 |
|
29 System attribute. Combine with --critical or --permanent. |
|
30 |
|
31 ==option bool r process |
|
32 |
|
33 Process attribute. Combine with --critical or --permanent. |
|
34 |
|
35 ==option bool c critical |
|
36 |
|
37 Sets the thread to be system/process critical. |
|
38 |
|
39 ==option bool p permanent |
|
40 |
|
41 Sets the thread to be system/process permanent. |
|
42 |
|
43 ==copyright |
|
44 |
|
45 Copyright (c) 2008-2010 Accenture. All rights reserved. |
|
46 |