linux/version.h sys/systeminfo.h
stdio_ext.h fcntl.h coff.h pty.h
sys/vlimit.h sys/resource.h
- sys/utsname.h pwd.h utmp.h dirent.h util.h)
+ sys/utsname.h pwd.h utmp.h dirent.h util.h sys/prctl.h)
AC_MSG_CHECKING(if personality LINUX32 can be set)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/personality.h>]], [[personality (PER_LINUX32)]])],
difftime posix_memalign \
getpwent endpwent getgrent endgrent \
touchlock \
-cfmakeraw cfsetspeed copysign __executable_start)
+cfmakeraw cfsetspeed copysign __executable_start prctl)
dnl getwd appears to be buggy on SVR4.2, so we don't use it.
if test $opsys = unixware; then
#include <sched.h>
+#ifdef HAVE_SYS_PRCTL_H
+#include <sys/prctl.h>
+#endif
+
void
sys_mutex_init (sys_mutex_t *mutex)
{
}
int
-sys_thread_create (sys_thread_t *thread_ptr, thread_creation_function *func,
- void *arg)
+sys_thread_create (sys_thread_t *thread_ptr, const char *name,
+ thread_creation_function *func, void *arg)
{
pthread_attr_t attr;
int result = 0;
return 0;
if (!pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED))
- result = pthread_create (thread_ptr, &attr, func, arg) == 0;
+ {
+ result = pthread_create (thread_ptr, &attr, func, arg) == 0;
+#if defined (HAVE_SYS_PRCTL_H) && defined (HAVE_PRCTL) && defined (PR_SET_NAME)
+ if (result && name != NULL)
+ prctl (PR_SET_NAME, name);
+#endif
+ }
pthread_attr_destroy (&attr);
extern sys_thread_t sys_thread_self (void);
extern int sys_thread_equal (sys_thread_t, sys_thread_t);
-extern int sys_thread_create (sys_thread_t *, thread_creation_function *,
+extern int sys_thread_create (sys_thread_t *, const char *,
+ thread_creation_function *,
void *);
extern void sys_thread_yield (void);
#include "character.h"
#include "buffer.h"
#include "process.h"
+#include "coding.h"
static struct thread_state primary_thread;
sys_thread_t thr;
struct thread_state *new_thread;
Lisp_Object result;
+ const char *c_name = NULL;
/* Can't start a thread in temacs. */
if (!initialized)
new_thread->next_thread = all_threads;
all_threads = new_thread;
- if (! sys_thread_create (&thr, run_thread, new_thread))
+ if (!NILP (name))
+ c_name = SSDATA (ENCODE_UTF_8 (name));
+
+ if (! sys_thread_create (&thr, c_name, run_thread, new_thread))
{
/* Restore the previous situation. */
all_threads = all_threads->next_thread;