not-procfs.c: Make procfs_find_new_threads and procfs_pid_to_str static.

gdb/ChangeLog:

        * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
        Make static.
This commit is contained in:
Joel Brobecker
2012-05-03 22:07:58 +00:00
parent fcf57f192d
commit 94c7423913
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2012-05-03 Joel Brobecker <brobecker@adacore.com>
* nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
Make static.
2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com> 2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
* stap-probe.c (stap_is_operator): Change declaration. * stap-probe.c (stap_is_operator): Change declaration.

View File

@@ -312,7 +312,7 @@ update_thread_private_data (struct thread_info *new_thread,
#endif /* _NTO_VERSION */ #endif /* _NTO_VERSION */
} }
void static void
procfs_find_new_threads (struct target_ops *ops) procfs_find_new_threads (struct target_ops *ops)
{ {
procfs_status status; procfs_status status;
@@ -1353,7 +1353,7 @@ procfs_thread_info (pid_t pid, short tid)
return NULL; return NULL;
} }
char * static char *
procfs_pid_to_str (struct target_ops *ops, ptid_t ptid) procfs_pid_to_str (struct target_ops *ops, ptid_t ptid)
{ {
static char buf[1024]; static char buf[1024];