2016-02-07 05:23:23 -05:00
|
|
|
'use strict'
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
var logger = require('./logger')
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
var utils = {
|
|
|
|
cleanForExit: cleanForExit
|
|
|
|
}
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
function cleanForExit (webtorrent_process) {
|
|
|
|
logger.info('Gracefully exiting.')
|
|
|
|
process.kill(-webtorrent_process.pid)
|
|
|
|
}
|
2015-11-02 16:19:39 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
module.exports = utils
|