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