blob: 2fc0f591850520743079a11c1f78e9dc8963185c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#include <pthread.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "libudev.h"
#include "macro.h"
static void* thread(void *p) {
struct udev_device **d = p;
assert_se(!(*d = udev_device_unref(*d)));
return NULL;
}
int main(int argc, char *argv[]) {
struct udev_device *loopback;
pthread_t t;
assert_se(unsetenv("SYSTEMD_MEMPOOL") == 0);
assert_se(loopback = udev_device_new_from_syspath(NULL, "/sys/class/net/lo"));
assert_se(udev_device_get_properties_list_entry(loopback));
assert_se(pthread_create(&t, NULL, thread, &loopback) == 0);
assert_se(pthread_join(t, NULL) == 0);
assert_se(!loopback);
return 0;
}
|