मैं अपनी मशीन पर प्रति उपयोगकर्ता प्रक्रियाओं की संख्या /etc/security/limits.conf
और nproc मान को सीमित करना चाहता हूं ।
मैंने यहाँ पढ़ा है कि लिनक्स प्रक्रियाओं और थ्रेड्स के बीच अंतर नहीं करता है?
प्रति उपयोगकर्ता मेरी वर्तमान nproc सीमा 1024 है, लेकिन यदि इसमें थ्रेड्स भी शामिल हैं, तो यह मेरे दृष्टिकोण में बहुत कम है। limits.conf
केवल nproc के लिए "प्रक्रिया" का पुरुष-पृष्ठ और कुछ नहीं।
// संपादित करें // बूस्ट के साथ C ++ में सैंपल कोड // g ++ -o boost_thread boost_thread.cpp -lbo__read
#include <unistd.h>
#include <iostream>
#include <boost/thread.hpp>
using namespace std;
int counter;
void print_thread(int i) {
counter++;
cout << "thread(" << i << ") counter " << counter << "\n";
sleep(5);
counter--;
}
int main() {
int i = 0;
int max = 1000000;
while (i < max) {
boost::thread(print_thread, i);
i++;
}
return 0;
}
परीक्षण (कुछ लाइनें हटा दी गई हैं):
$ ulimit -u
1024
$ ./thread
...
...
...
thread(828) counter 828
thread(829) counter 829
thread(830) counter 830
thread(831) counter 831
thread(832) counter 832
thread(610) counter thread(833833) counter 834
thread(834) counter 835
thread(835) counter 836
thread(836) counter 837
thread(837) counter 838
thread(838) counter 839
thread(839) counter 840
thread(840) counter 841
thread(841) counter 842
thread(842) counter 843
thread(843) counter 844
thread(844) counter 845
thread(845) counter 846
thread(846) counter 847
thread(847) counter 848
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::thread_resource_error> >'
what(): boost::thread_resource_error
Aborted (core dumped)
मेरा लैपटॉप निष्क्रिय होने के दौरान ~ 130 प्रक्रियाओं का उपयोग करता है। इसलिए nproc , या Linux एक व्यापक दृश्य में, प्रक्रियाओं और थ्रेड्स के बीच का अंतर नहीं करता है। जो मेरे लिए उचित लगता है, क्योंकि धागे भी थकावट हो सकते हैं, न केवल प्रक्रियाएं।