Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions bindings/pyroot/JupyROOT/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from ctypes import CDLL, c_char_p
from threading import Thread
from time import sleep as timeSleep
from resource import setrlimit, RLIMIT_STACK, RLIM_INFINITY

_lib = CDLL("libJupyROOT.so")

Expand Down Expand Up @@ -85,6 +86,7 @@ class Runner(object):
'''
def __init__(self, function):
self.function = function
setrlimit(RLIMIT_STACK,(RLIM_INFINITY,RLIM_INFINITY))
self.thread = None

def Run(self, argument):
Expand Down