From b0e9321f441c30360852221359494ade9816bcc5 Mon Sep 17 00:00:00 2001 From: rahul Date: Wed, 23 Oct 2019 13:00:12 +0530 Subject: Increased socket limit --- src/ngspiceSimulation/NgspiceWidget.py | 2 +- src/ngspiceSimulation/NgspiceWidget.pyc | Bin 1681 -> 1681 bytes src/projManagement/Kicad.pyc | Bin 3583 -> 3632 bytes src/projManagement/Worker.py | 4 ++-- src/projManagement/Worker.pyc | Bin 1870 -> 1870 bytes 5 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py index bde95899..4a82044e 100644 --- a/src/ngspiceSimulation/NgspiceWidget.py +++ b/src/ngspiceSimulation/NgspiceWidget.py @@ -18,7 +18,7 @@ class NgspiceWidget(QtGui.QWidget): print "Argument to ngspice command : ",command if platform.system() == 'Linux': - self.command = "ulimit -S -n 16384;cd "+projPath+";ngspice "+command + self.command = "ulimit -S -n 32768;cd "+projPath+";ngspice "+command #Creating argument for process #self.args = ['-into', str(self.terminal.winId()),'-hold','-e', self.command] self.args = ['-hold','-e', self.command] diff --git a/src/ngspiceSimulation/NgspiceWidget.pyc b/src/ngspiceSimulation/NgspiceWidget.pyc index e0ad5978..6e6ee97c 100644 Binary files a/src/ngspiceSimulation/NgspiceWidget.pyc and b/src/ngspiceSimulation/NgspiceWidget.pyc differ diff --git a/src/projManagement/Kicad.pyc b/src/projManagement/Kicad.pyc index 7f54ee39..c59ce886 100644 Binary files a/src/projManagement/Kicad.pyc and b/src/projManagement/Kicad.pyc differ diff --git a/src/projManagement/Worker.py b/src/projManagement/Worker.py index d753a96d..53b3e65b 100644 --- a/src/projManagement/Worker.py +++ b/src/projManagement/Worker.py @@ -11,9 +11,9 @@ # BUGS: --- # NOTES: --- # AUTHOR: Fahim Khan, fahim.elex@gmail.com -# MODIFIED: Rahul Paknikar, rahulp@iitb.ac.in +# MODIFIED: Rahul Paknikar, rahulp@iitb.ac.in # ORGANIZATION: eSim team at FOSSEE, IIT Bombay. -# CREATED: Tuesday 24 Feb 2015 +# CREATED: Tuesday 24 Feb 2015 # REVISION: Thursday 3 Oct 2019 #=============================================================================== from PyQt4 import QtCore diff --git a/src/projManagement/Worker.pyc b/src/projManagement/Worker.pyc index 35514f5c..c13c593e 100644 Binary files a/src/projManagement/Worker.pyc and b/src/projManagement/Worker.pyc differ -- cgit