Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: build/android/pylib/device_signal.py

Issue 1314913009: [Android] Move some pylib modules into devil/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/android/pylib/device/shared_prefs_test.py ('k') | build/android/pylib/flag_changer.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Defines constants for signals that should be supported on devices. 5 # pylint: disable=unused-wildcard-import
6 # pylint: disable=wildcard-import
6 7
7 Note: Obtained by running `kill -l` on a user device. 8 from devil.android.device_signal import *
8 """
9
10
11 SIGHUP = 1 # Hangup
12 SIGINT = 2 # Interrupt
13 SIGQUIT = 3 # Quit
14 SIGILL = 4 # Illegal instruction
15 SIGTRAP = 5 # Trap
16 SIGABRT = 6 # Aborted
17 SIGBUS = 7 # Bus error
18 SIGFPE = 8 # Floating point exception
19 SIGKILL = 9 # Killed
20 SIGUSR1 = 10 # User signal 1
21 SIGSEGV = 11 # Segmentation fault
22 SIGUSR2 = 12 # User signal 2
23 SIGPIPE = 13 # Broken pipe
24 SIGALRM = 14 # Alarm clock
25 SIGTERM = 15 # Terminated
26 SIGSTKFLT = 16 # Stack fault
27 SIGCHLD = 17 # Child exited
28 SIGCONT = 18 # Continue
29 SIGSTOP = 19 # Stopped (signal)
30 SIGTSTP = 20 # Stopped
31 SIGTTIN = 21 # Stopped (tty input)
32 SIGTTOU = 22 # Stopped (tty output)
33 SIGURG = 23 # Urgent I/O condition
34 SIGXCPU = 24 # CPU time limit exceeded
35 SIGXFSZ = 25 # File size limit exceeded
36 SIGVTALRM = 26 # Virtual timer expired
37 SIGPROF = 27 # Profiling timer expired
38 SIGWINCH = 28 # Window size changed
39 SIGIO = 29 # I/O possible
40 SIGPWR = 30 # Power failure
41 SIGSYS = 31 # Bad system call
OLDNEW
« no previous file with comments | « build/android/pylib/device/shared_prefs_test.py ('k') | build/android/pylib/flag_changer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698