Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Suicide.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 
3 # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
4 #
5 # $Id: Suicide.py 634986 2014-12-10 12:43:21Z graemes $
6 # Script which will kill itself (useful for testing transforms)
7 #
8 import signal
9 import os
10 
11 os.kill(os.getpid(), signal.SIGKILL)