this post was submitted on 27 Jan 2024
32 points (97.1% liked)

KDE

5053 readers
58 users here now

KDE is an international technology team creating user-friendly free and open source software for desktop and portable computing. KDE’s software runs on GNU/Linux, BSD and other operating systems, including Windows.

Plasma 6 Bugs

If you encounter a bug, proceed to https://bugs.kde.org, check whether it has been reported.

If it hasn't, report it yourself.

PLEASE THINK CAREFULLY BEFORE POSTING HERE.

Developers do not look for reports on social media, so they will not see it and all it does is clutter up the feed.

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] diazona@techhub.social 3 points 7 months ago (1 children)

@mvirts @Moshpirit Yep, htop shows threads in green, so all of those shown in the image (except the first one probably) are threads. You can turn off display of threads in the settings.

Or, if you enable tree display, the threads will display as children of their process.

[–] Moshpirit@lemmy.world 2 points 7 months ago (1 children)

@mvirts@lemmy.world @diazona@techhub.social thanks for the info! I had no idea of the existence of threads! TBF I don't even know the reason of their existence, but I'll check it out :)

[–] diazona@techhub.social 2 points 7 months ago

@Moshpirit 👍

If you have any experience with computer programming, I would definitely recommend looking up a tutorial on threads for your favorite programming language and writing a little program that uses them. The best way to understand what threads are is through practical experience.

If not, hopefully you can find some good resources anyway! The gist is that threads are kind of like little mini-programs that run within a main program and can be used to do specific tasks that would otherwise "distract" the main program from its work. (That's not exactly accurate, but it's the best way I can think of to explain the basic idea in one sentence.)