summaryrefslogtreecommitdiffstats
path: root/player/javascript.c
diff options
context:
space:
mode:
authorAvi Halachmi (:avih) <avihpit@yahoo.com>2021-05-01 15:41:13 +0300
committerAvi Halachmi (:avih) <avihpit@yahoo.com>2021-05-01 16:07:05 +0300
commit02fbdf8aaffac527ce33c81ace001b48aee9e953 (patch)
tree255eb90976ed7c46390a133ce817edd5d3e5ced5 /player/javascript.c
parentf3b2ea9de533ac3ee0ebdaaf6411c97212f5a86b (diff)
downloadmpv-02fbdf8aaffac527ce33c81ace001b48aee9e953.tar.bz2
mpv-02fbdf8aaffac527ce33c81ace001b48aee9e953.tar.xz
scripting (lua/js): utils.getpid: make wrapper of pid property
We now have at least 3 scripting APIs which are trivial wrappers around properties: mp.get_mouse_pos, utils.getcwd, utils.getpid. After some discussion on IRC it was decided that it's easier for us to maintain them as trivial wrappers than to deprecate them and inflict pain on users and script authors, so currently no plan to deprecate.
Diffstat (limited to 'player/javascript.c')
-rw-r--r--player/javascript.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/player/javascript.c b/player/javascript.c
index 8cb263e123..406a469447 100644
--- a/player/javascript.c
+++ b/player/javascript.c
@@ -40,7 +40,6 @@
#include "misc/bstr.h"
#include "osdep/timer.h"
#include "osdep/threads.h"
-#include "osdep/getpid.h"
#include "stream/stream.h"
#include "sub/osd.h"
#include "core.h"
@@ -925,12 +924,6 @@ static void script_get_user_path(js_State *J, void *af)
js_pushstring(J, mp_get_user_path(af, jctx(J)->mpctx->global, path));
}
-// args: none
-static void script_getpid(js_State *J)
-{
- js_pushnumber(J, mp_getpid());
-}
-
// args: prefixed file name, data (c-str)
static void script_write_file(js_State *J, void *af)
{
@@ -1183,7 +1176,6 @@ static const struct fn_entry utils_fns[] = {
FN_ENTRY(split_path, 1),
AF_ENTRY(join_path, 2),
AF_ENTRY(get_user_path, 1),
- FN_ENTRY(getpid, 0),
FN_ENTRY(get_env_list, 0),
FN_ENTRY(read_file, 2),