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