blob: 5028aaa2866186405d576e8f0fb4e584cdc254cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#if defined(TARGET_DARWIN_OSX)
// SDL redefines main as SDL_main
#ifdef HAS_SDL
#include <SDL/SDL.h>
#endif
#endif
#include "PlatformPosix.h"
#include "application/AppEnvironment.h"
#include "application/AppParamParser.h"
#include "platform/xbmc.h"
#if defined(TARGET_LINUX) || defined(TARGET_FREEBSD)
#include "platform/linux/AppParamParserLinux.h"
#endif
#include <cstdio>
#include <cstring>
#include <errno.h>
#include <locale.h>
#include <signal.h>
#include <sys/resource.h>
namespace
{
extern "C" void XBMC_POSIX_HandleSignal(int sig)
{
// Setting an atomic flag is one of the only useful things that is permitted by POSIX
// in signal handlers
CPlatformPosix::RequestQuit();
}
} // namespace
int main(int argc, char* argv[])
{
#if defined(_DEBUG)
struct rlimit rlim;
rlim.rlim_cur = rlim.rlim_max = RLIM_INFINITY;
if (setrlimit(RLIMIT_CORE, &rlim) == -1)
fprintf(stderr, "Failed to set core size limit (%s).\n", strerror(errno));
#endif
// Set up global SIGINT/SIGTERM handler
struct sigaction signalHandler;
std::memset(&signalHandler, 0, sizeof(signalHandler));
signalHandler.sa_handler = &XBMC_POSIX_HandleSignal;
signalHandler.sa_flags = SA_RESTART;
sigaction(SIGINT, &signalHandler, nullptr);
sigaction(SIGTERM, &signalHandler, nullptr);
setlocale(LC_NUMERIC, "C");
#if defined(TARGET_LINUX) || defined(TARGET_FREEBSD)
CAppParamParserLinux appParamParser;
#else
CAppParamParser appParamParser;
#endif
appParamParser.Parse(argv, argc);
CAppEnvironment::SetUp(appParamParser.GetAppParams());
int status = XBMC_Run(true);
CAppEnvironment::TearDown();
return status;
}
|