Increase gdbsever PBUFSIZ

PBUFSIZ is no longer big enough for SVE. Increase accordingly.

gdbserver/
            * server.h (PBUFSIZ): Increase size
This commit is contained in:
Alan Hayward 2018-06-11 10:29:20 +01:00
parent 65d4cadafd
commit b91ad3ff94
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2018-06-11 Alan Hayward <alan.hayward@arm.com>
* server.h (PBUFSIZ): Increase size
2018-06-11 Alan Hayward <alan.hayward@arm.com>
* regcache.c (regcache::raw_compare): New function.

View File

@ -113,7 +113,7 @@ extern int in_queued_stop_replies (ptid_t ptid);
/* Buffer sizes for transferring memory, registers, etc. Set to a constant
value to accomodate multiple register formats. This value must be at least
as large as the largest register set supported by gdbserver. */
#define PBUFSIZ 16384
#define PBUFSIZ 18432
/* Definition for an unknown syscall, used basically in error-cases. */
#define UNKNOWN_SYSCALL (-1)