Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 90071d0cf2bf65517f909c719175ff30a8d0ec47 (plain) (blame)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
###############################################################################
# Copyright (c) 2007, 2015 Wind River Systems and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
#   Wind River Systems - initial API and implementation
#   Marc Khouzam (Ericsson) - Update format of thread string to better display
#                             Thread name (Bug 378154)
#   Marc Khouzam (Ericsson) - Support for exited processes in the debug view (bug 407340)
###############################################################################

# {0} - name available, 0=not available/1=available
# {1} - name
# {2} - ID available, 0=not available/1=available
# {3} - ID
# {4} - OS Thread ID available, 0=not available/1=available
# {5} - OS Thread ID
# {6} - Core available, 0=not available/1=available
# {7} - Core
# {8} - 0=running/1=suspended
# {9} - state change reason available, 0=not available/1=available
# {10} - state change reason
# {11} - state change details available, 0=not available/1=available
# {12} - state change details
ThreadVMNode_No_columns__text_format=Thread{2,choice,0#|1# #{3}}{0,choice,0#|1# [{1}]}{4,choice,0#|1# {5}}{6,choice,0#|1# [core: {7}]} ({8,choice,0#Running|1#Suspended}{9,choice,0#|1# : {10}}{11,choice,0#|1# : {12}})

ThreadVMNode_No_columns__Error__label=<unavailable>

# {0} - name available, 0=not available/1=available
# {1} - name
# {2} - ID available, 0=not available/1=available
# {3} - ID
# {4} - Cores available, 0=not available/1=available
# {5} - Cores
# {6} - Thread summary available, 0=not available/1=available
# {7} - Thread summary in text format
ContainerVMNode_No_columns__text_format={0,choice,0#Process|1#{1}}{2,choice,0#|1# [{3}]}{4,choice,0#|1# [cores: {5}]}{6,choice,0#|1# {7}}

# {0} - name available, 0=not available/1=available
# {1} - name
# {2} - ID available, 0=not available/1=available
# {3} - ID
# {4} - Exit code available, 0=not available/1=available
# {5} - Exit code
ContainerVMNode_No_columns__exited_format=<terminated{4,choice,0#|1#, exit value: {5}}>{0,choice,0#Process|1#{1}}{2,choice,0#|1# [{3}]}

ContainerVMNode_No_columns__Error__label=<unavailable>

ContainerVMNode_filtered_running_threads=filtered running threads

Back to the top