GithubHelp home page GithubHelp logo

jayvdb / namedthreads Goto Github PK

View Code? Open in Web Editor NEW

This project forked from beniwohli/namedthreads

0.0 1.0 0.0 10 KB

Patch to propagate Python thread names to system thread names

License: BSD 3-Clause "New" or "Revised" License

Python 100.00%

namedthreads's Introduction

namedthreads

This is a hack to propagate thread names set in Python to the system.

WARNING: This is only meant for testing/debugging purposes. Do NOT run in production.

The problem

You can name threads in Python like so:

import threading

my_thread = threading.Thread(target=my_func, name="my-thread")

But when running ps, top and similar, you'll notice that the thread name isn't visible in these tools, making threading bugs somewhat harder to debug.

The solution

A comment in bpo-15500 lines out a monkeypatch that uses ctypes to set the name using libpthread.pthread_setname_np. While this works beautifully, it hasn't been included in core python due to compatibility reasons. This module packages the monkeypatch in an easy to install package.

Before After

Usage

Install

pip install namedthreads

Manual patching

Run this as early as possible in your code:

import namedthreads
namedthreads.patch()

Automatic patching

Inspired by Graham Dumpleton's autowrapt, this module can be activated automatically. Due to the hacky nature of this approach, it is guarded by checking the presence of an environment variable, NAMEDTHREADS. Automatic patching is only activated if this environment variable is set

NAMEDTHREADS=1 python myscript.py

namedthreads's People

Contributors

beniwohli avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.