diff options
author | DJ Delorie <dj@redhat.com> | 2010-10-06 23:01:30 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2010-10-06 23:01:30 +0000 |
commit | 9711ae4d9fb353051cbce8d4f72ce25bdf988f74 (patch) | |
tree | 84dde83f5042262f2c4471750a0142eb633e9d0f /include | |
parent | b98aa77cb421596fe1a8cc61737bffd021f282ea (diff) | |
download | gdb-9711ae4d9fb353051cbce8d4f72ce25bdf988f74.zip gdb-9711ae4d9fb353051cbce8d4f72ce25bdf988f74.tar.gz gdb-9711ae4d9fb353051cbce8d4f72ce25bdf988f74.tar.bz2 |
merge from gcc
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/libiberty.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index f94becd..724d027 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2010-10-06 Andi Kleen <ak@linux.intel.com> + + * libiberty.h (setproctitle): Add prototype. + 2010-09-29 Bernd Schmidt <bernds@codesourcery.com> * opcode/tic6x-control-registers.h (tscl): Now read_write. diff --git a/include/libiberty.h b/include/libiberty.h index b320b18..f54ca18 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -634,6 +634,9 @@ extern int vsnprintf (char *, size_t, const char *, va_list) ATTRIBUTE_PRINTF(3, extern int strverscmp (const char *, const char *); #endif +/* Set the title of a process */ +extern void setproctitle (const char *name, ...); + #define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0])) /* Drastically simplified alloca configurator. If we're using GCC, |