As we discussed in the last meeting, we reset the ports tree and began from scratch, even though this change involves porting all the packages. Starting small and growing gradually, this approach will reduce build times and consequently lower energy consumption in a world affected by climate change. We will add new ports as users needs arise; ok h3artbl33d@
This commit is contained in:
parent
83a0aaf92c
commit
9a3af55370
59377 changed files with 98673 additions and 4712155 deletions
13
sysutils/libudev-openbsd/patches/patch-udev-monitor_c
Normal file
13
sysutils/libudev-openbsd/patches/patch-udev-monitor_c
Normal file
|
@ -0,0 +1,13 @@
|
|||
Kill the udev monitor thread on exit.
|
||||
|
||||
Index: udev-monitor.c
|
||||
--- udev-monitor.c.orig
|
||||
+++ udev-monitor.c
|
||||
@@ -334,6 +334,7 @@ udev_monitor_unref(struct udev_monitor *um)
|
||||
TRC("(%p) refcount=%d", um, um->refcount);
|
||||
if (--um->refcount == 0) {
|
||||
close(um->fds[0]);
|
||||
+ pthread_cancel(um->thread);
|
||||
pthread_join(um->thread, NULL);
|
||||
close(um->fds[1]);
|
||||
udev_filter_free(&um->filters);
|
Loading…
Add table
Add a link
Reference in a new issue