34 lines
1.3 KiB
Python
34 lines
1.3 KiB
Python
"""
|
|
Multithreading support.
|
|
|
|
MicroPython module: https://docs.micropython.org/en/v1.26.0/library/_thread.html
|
|
|
|
CPython module: :mod:`python:_thread` https://docs.python.org/3/library/_thread.html .
|
|
|
|
This module implements multithreading support.
|
|
|
|
This module is highly experimental and its API is not yet fully settled
|
|
and not yet described in this documentation.
|
|
|
|
---
|
|
Module: '_thread' on micropython-v1.26.0-rp2-RPI_PICO
|
|
"""
|
|
|
|
# MCU: {'mpy': 'v6.3', 'build': '', 'ver': '1.26.0', 'arch': 'armv6m', 'version': '1.26.0', 'port': 'rp2', 'board': 'RPI_PICO', 'family': 'micropython', 'board_id': 'RPI_PICO', 'variant': '', 'cpu': 'RP2040'}
|
|
# Stubber: v1.26.0
|
|
from __future__ import annotations
|
|
from _typeshed import Incomplete
|
|
from typing_extensions import Awaitable, TypeAlias, TypeVar
|
|
|
|
def get_ident(*args, **kwargs) -> Incomplete: ...
|
|
def start_new_thread(*args, **kwargs) -> Incomplete: ...
|
|
def stack_size(*args, **kwargs) -> Incomplete: ...
|
|
def exit(*args, **kwargs) -> Incomplete: ...
|
|
def allocate_lock(*args, **kwargs) -> Incomplete: ...
|
|
|
|
class LockType:
|
|
def locked(self, *args, **kwargs) -> Incomplete: ...
|
|
def release(self, *args, **kwargs) -> Incomplete: ...
|
|
def acquire(self, *args, **kwargs) -> Incomplete: ...
|
|
def __init__(self, *argv, **kwargs) -> None: ...
|