Home »
Python »
Python Reference »
Python threading Module
Python threading Module | setprofile() Method with Example
Python threading.setprofile() Method: Here, we are going to learn about the getName() method of threading Module in Python with its definition, syntax, and examples.
Submitted by Hritika Rajput, on May 14, 2020
Python threading.setprofile() Method
setprofile() is an inbuilt method of the threading module in Python. It is used to set a profile function for all the threads that are created by the threading module. The func function is passed to sys.profile() for each method.
Module:
import threading
Syntax:
setprofile(func)
Parameter(s):
- func: It is a required parameter, which is passed to sys.setprofile() for each thread. This function is executed before the run() method.
Return value:
The return type of this method is <class 'NoneType'>, it does not return anything. It sets a profile function for all the threads.
Example:
# Python program to explain the use of
# setprofile() method in Threading Module
import time
import threading
def trace_profile():
print("Current thread's profile")
print("Name:", str(threading.current_thread().getName()))
print("Thread id:", threading.get_ident())
def thread_1(i):
time.sleep(5)
threading.setprofile(trace_profile())
print("Value by Thread-1:",i)
print()
def thread_2(i):
threading.setprofile(trace_profile())
print("Value by Thread-2:",i)
print()
def thread_3(i):
time.sleep(4)
threading.setprofile(trace_profile())
print("Value by Thread-3:",i)
print()
def thread_4(i):
time.sleep(1)
threading.setprofile(trace_profile())
print("Value by Thread-4:",i)
print()
# Creating sample threads
threading.setprofile(trace_profile())
thread1 = threading.Thread(target=thread_1, args=(1,))
thread2 = threading.Thread(target=thread_2, args=(2,))
thread3 = threading.Thread(target=thread_3, args=(3,))
thread4 = threading.Thread(target=thread_4, args=(4,))
# Starting the threads
thread1.start()
thread2.start()
thread3.start()
thread4.start()
Output
Current thread's profile
Name: MainThread
Thread id: 140461120771840
Current thread's profile
Name: Thread-2
Thread id: 140461086283520
Value by Thread-2: 2
Current thread's profile
Name: Thread-4
Thread id: 140461086283520
Value by Thread-4: 4
Current thread's profile
Name: Thread-3
Thread id: 140461077890816
Value by Thread-3: 3
Current thread's profile
Name: Thread-1
Thread id: 140461094676224
Value by Thread-1: 1
TOP Interview Coding Problems/Challenges