core: Fix handle_events return code on hotplug pipe read error
[libusbx.git] / examples / listdevs.c
blob05b3998f76204409394dffc294adb09bc550bf40
1 /*
2 * libusbx example program to list devices on the bus
3 * Copyright © 2007 Daniel Drake <dsd@gentoo.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #include <stdio.h>
22 #include "libusb.h"
24 static void print_devs(libusb_device **devs)
26 libusb_device *dev;
27 int i = 0, j = 0;
28 uint8_t path[8];
30 while ((dev = devs[i++]) != NULL) {
31 struct libusb_device_descriptor desc;
32 int r = libusb_get_device_descriptor(dev, &desc);
33 if (r < 0) {
34 fprintf(stderr, "failed to get device descriptor");
35 return;
38 printf("%04x:%04x (bus %d, device %d)",
39 desc.idVendor, desc.idProduct,
40 libusb_get_bus_number(dev), libusb_get_device_address(dev));
42 r = libusb_get_port_path(NULL, dev, path, sizeof(path));
43 if (r > 0)
44 printf(" path: ");
45 j = 0;
46 while(j < r) {
47 printf("%d", path[j]);
48 j++;
49 if (j < r)
50 printf(".");
52 printf("\n");
56 int main(void)
58 libusb_device **devs;
59 int r;
60 ssize_t cnt;
62 r = libusb_init(NULL);
63 if (r < 0)
64 return r;
66 cnt = libusb_get_device_list(NULL, &devs);
67 if (cnt < 0)
68 return (int) cnt;
70 print_devs(devs);
71 libusb_free_device_list(devs, 1);
73 libusb_exit(NULL);
74 return 0;