aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-continueevent.c
AgeCommit message (Expand)AuthorFilesLines
2022-01-01Automatic Copyright Year update after running gdb/copyright.pyJoel Brobecker1-1/+1
2021-01-01Update copyright year range in all GDB filesJoel Brobecker1-1/+1
2020-01-01Update copyright year range in all GDB files.Joel Brobecker1-1/+1
2019-01-22Do not include py-ref.h in most filesTom Tromey1-1/+0
2019-01-01Update copyright year range in all GDB files.Joel Brobecker1-1/+1
2018-09-16Change thread_to_thread_object to return a new referenceTom Tromey1-2/+3
2018-08-24gdb/python: Use copy-initialization more when possiblePedro Alves1-1/+1
2018-08-24Fix 8.2 regression in gdb.python/py-evthreads.exp w/ gdbserver (PR gdb/23379)Pedro Alves1-3/+16
2018-01-02Update copyright year range in all GDB filesJoel Brobecker1-1/+1
2017-09-11Make it simpler to add events to PythonTom Tromey1-9/+0
2017-09-11Small event ownership clean up in Python layerTom Tromey1-1/+1
2017-02-10Turn gdbpy_ref into a templateTom Tromey1-1/+1
2017-01-10Change event code to use gdbpy_refTom Tromey1-5/+4
2017-01-01update copyright year range in GDB filesJoel Brobecker1-1/+1
2016-01-01GDB copyright headers update after running GDB's copyright.py script.Joel Brobecker1-1/+1
2015-02-11Fix redefinition errors in C++ modeTom Tromey1-3/+2
2015-01-01Update year range in copyright notice of all files owned by the GDB project.Joel Brobecker1-1/+1
2014-01-01Update Copyright year range in all files maintained by GDB.Joel Brobecker1-1/+1
2013-05-20 * python/py-arch.c (arch_object_type): UseTom Tromey1-1/+2
2013-01-01Update years in copyright notice for the GDB files.Joel Brobecker1-1/+1
2012-11-08 * python/py-bpevent.c: Include defs.h.Tom Tromey1-0/+1
2012-03-012012-03-01 Pedro Alves <palves@redhat.com>Pedro Alves1-1/+1
2012-01-04Copyright year update in most files of the GDB Project.Joel Brobecker1-1/+1
2011-02-05Add the file that prev commit forget.Hui Zhu1-0/+53
s="hl opt">, musb_set_vbus, musb_set_session, __musb_irq_max, }; typedef struct MUSBState MUSBState; MUSBState *musb_init(qemu_irq *irqs); uint32_t musb_core_intr_get(MUSBState *s); void musb_core_intr_clear(MUSBState *s, uint32_t mask); void musb_set_size(MUSBState *s, int epnum, int size, int is_tx); /* usb-bus.c */ struct USBBus { BusState qbus; USBBusOps *ops; int busnr; int nfree; int nused; QTAILQ_HEAD(, USBPort) free; QTAILQ_HEAD(, USBPort) used; QTAILQ_ENTRY(USBBus) next; }; struct USBBusOps { int (*register_companion)(USBBus *bus, USBPort *ports[], uint32_t portcount, uint32_t firstport); }; void usb_bus_new(USBBus *bus, USBBusOps *ops, DeviceState *host); USBBus *usb_bus_find(int busnr); void usb_qdev_register(USBDeviceInfo *info); void usb_qdev_register_many(USBDeviceInfo *info); USBDevice *usb_create(USBBus *bus, const char *name); USBDevice *usb_create_simple(USBBus *bus, const char *name); USBDevice *usbdevice_create(const char *cmdline); void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index, USBPortOps *ops, int speedmask); int usb_register_companion(const char *masterbus, USBPort *ports[], uint32_t portcount, uint32_t firstport, void *opaque, USBPortOps *ops, int speedmask); void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr); void usb_unregister_port(USBBus *bus, USBPort *port); int usb_device_attach(USBDevice *dev); int usb_device_detach(USBDevice *dev); int usb_device_delete_addr(int busnr, int addr); static inline USBBus *usb_bus_from_device(USBDevice *d) { return DO_UPCAST(USBBus, qbus, d->qdev.parent_bus); }