mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/types.h: Add __ino64_t definition.
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
1998-07-07 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/types.h: Add
|
||||
__ino64_t definition.
|
||||
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/types.h: Define
|
||||
__off64_t. Reported by Felix von Leitner <leitner@math.fu-berlin.de>.
|
||||
|
||||
|
@ -1,3 +1,13 @@
|
||||
1998-07-07 15:20 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* Makefile: Add rules to compile and run tests.
|
||||
* Examples/ex1.c: Little changes to fix warnings.
|
||||
* Examples/ex2.c: Likewise.
|
||||
* Examples/ex3.c: Likewise.
|
||||
* Examples/ex4.c: Likewise.
|
||||
* Examples/ex5.c: Likewise.
|
||||
* Examples/ex6.c: New file.
|
||||
|
||||
1998-07-05 11:54 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* Versions: Add pthread_attr_init to GLIBC_2.1 version in libc.
|
||||
|
@ -17,15 +17,15 @@ void * process(void * arg)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int main()
|
||||
int main(void)
|
||||
{
|
||||
int retcode;
|
||||
pthread_t th_a, th_b;
|
||||
void * retval;
|
||||
|
||||
retcode = pthread_create(&th_a, NULL, process, "a");
|
||||
retcode = pthread_create(&th_a, NULL, process, (void *) "a");
|
||||
if (retcode != 0) fprintf(stderr, "create a failed %d\n", retcode);
|
||||
retcode = pthread_create(&th_b, NULL, process, "b");
|
||||
retcode = pthread_create(&th_b, NULL, process, (void *) "b");
|
||||
if (retcode != 0) fprintf(stderr, "create b failed %d\n", retcode);
|
||||
retcode = pthread_join(th_a, &retval);
|
||||
if (retcode != 0) fprintf(stderr, "join a failed %d\n", retcode);
|
||||
@ -33,4 +33,3 @@ int main()
|
||||
if (retcode != 0) fprintf(stderr, "join b failed %d\n", retcode);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -97,7 +97,7 @@ void * consumer(void * data)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int main()
|
||||
int main(void)
|
||||
{
|
||||
pthread_t th_a, th_b;
|
||||
void * retval;
|
||||
@ -111,6 +111,3 @@ int main()
|
||||
pthread_join(th_b, &retval);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
/* Multi-thread searching.
|
||||
Illustrates: thread cancellation, cleanup handlers. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
@ -19,9 +20,7 @@ pthread_t threads[NUM_THREADS];
|
||||
pthread_mutex_t lock;
|
||||
int tries;
|
||||
|
||||
int main(argc, argv)
|
||||
int argc;
|
||||
char ** argv;
|
||||
int main(int argc, char ** argv)
|
||||
{
|
||||
int i;
|
||||
int pid;
|
||||
@ -141,4 +140,3 @@ void *search(void *arg)
|
||||
pthread_cleanup_pop(0);
|
||||
return((void *)0);
|
||||
}
|
||||
|
||||
|
@ -40,7 +40,7 @@ static void str_alloc_destroy_accu(void * accu);
|
||||
|
||||
/* Thread-safe version of str_accumulate */
|
||||
|
||||
char * str_accumulate(char * s)
|
||||
char * str_accumulate(const char * s)
|
||||
{
|
||||
char * accu;
|
||||
|
||||
@ -97,8 +97,8 @@ int main(int argc, char ** argv)
|
||||
pthread_t th1, th2;
|
||||
|
||||
res = str_accumulate("Result of ");
|
||||
pthread_create(&th1, NULL, process, "first");
|
||||
pthread_create(&th2, NULL, process, "second");
|
||||
pthread_create(&th1, NULL, process, (void *) "first");
|
||||
pthread_create(&th2, NULL, process, (void *) "second");
|
||||
res = str_accumulate("initial thread");
|
||||
printf("Thread %lx: \"%s\"\n", pthread_self(), res);
|
||||
pthread_join(th1, NULL);
|
||||
|
@ -86,7 +86,7 @@ void * consumer(void * data)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int main()
|
||||
int main(void)
|
||||
{
|
||||
pthread_t th_a, th_b;
|
||||
void * retval;
|
||||
|
38
linuxthreads/Examples/ex6.c
Normal file
38
linuxthreads/Examples/ex6.c
Normal file
@ -0,0 +1,38 @@
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <pthread.h>
|
||||
|
||||
void *
|
||||
test_thread (void *v_param)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int
|
||||
main (void)
|
||||
{
|
||||
unsigned long count;
|
||||
|
||||
for (count = 0; count < 2000; ++count)
|
||||
{
|
||||
pthread_t thread;
|
||||
int status;
|
||||
|
||||
status = pthread_create (&thread, NULL, test_thread, NULL);
|
||||
if (status != 0)
|
||||
{
|
||||
printf ("status = %d, count = %lu: %s\n", status, count,
|
||||
strerror (errno));
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
printf ("count = %lu\n", count);
|
||||
}
|
||||
/* pthread_detach (thread); */
|
||||
pthread_join (thread, NULL);
|
||||
usleep (50);
|
||||
}
|
||||
return 0;
|
||||
}
|
@ -35,9 +35,20 @@ libpthread-routines := attr cancel condvar join manager mutex ptfork \
|
||||
ptlongjmp pthread signals specific errno lockfile \
|
||||
semaphore spinlock wrapsyscall rwlock
|
||||
|
||||
vpath %.c Examples
|
||||
tests = ex1 ex2 ex3 ex4 ex5 ex6
|
||||
|
||||
include ../Rules
|
||||
|
||||
# Depend on libc.so so a DT_NEEDED is generated in the shared objects.
|
||||
# This ensures they will load libc.so for needed symbols if loaded by
|
||||
# a statically-linked program that hasn't already loaded it.
|
||||
$(objpfx)libpthread.so: $(common-objpfx)libc.so
|
||||
|
||||
# Make sure we link with the thread library.
|
||||
$(objpfx)ex1: $(objpfx)libpthread.so
|
||||
$(objpfx)ex2: $(objpfx)libpthread.so
|
||||
$(objpfx)ex3: $(objpfx)libpthread.so
|
||||
$(objpfx)ex4: $(objpfx)libpthread.so
|
||||
$(objpfx)ex5: $(objpfx)libpthread.so
|
||||
$(objpfx)ex6: $(objpfx)libpthread.so
|
||||
|
@ -49,6 +49,7 @@ typedef __u_long __dev_t; /* Type of device numbers. */
|
||||
typedef __u_int __uid_t; /* Type of user identifications. */
|
||||
typedef __u_int __gid_t; /* Type of group identifications. */
|
||||
typedef __u_long __ino_t; /* Type of file serial numbers. */
|
||||
typedef __u_long __ino64_t; /* Type of file serial numbers. */
|
||||
typedef __u_int __mode_t; /* Type of file attribute bitmasks. */
|
||||
typedef __u_int __nlink_t; /* Type of file link counts. */
|
||||
typedef long int __off_t; /* Type of file sizes and offsets. */
|
||||
|
Reference in New Issue
Block a user