Skip to content

fix deadlock problem caused by recursion#7

Open
SKY123C wants to merge 1 commit intopyblish:mainfrom
SKY123C:main
Open

fix deadlock problem caused by recursion#7
SKY123C wants to merge 1 commit intopyblish:mainfrom
SKY123C:main

Conversation

@SKY123C
Copy link
Copy Markdown
Contributor

@SKY123C SKY123C commented Nov 22, 2024

import unreal
import threading

def a():
    print("a func")

def b():
    print("b func")
    unreal.executeInMainThreadWithResult(a)

def c():
    print("c func")
    unreal.executeInMainThreadWithResult(b)
    
my_thread = threading.Thread(target=c)
my_thread.start()

this commit can fix this program

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant