View Full Version : سوال: سمافور
zahra.mf
یک شنبه 25 دی 1390, 18:30 عصر
سلام
یه برنامه نوشتم که باید هماهنگیش با سمافور انجام بشه برنامه اینطوریه که دانشجوها باید از استاد سوال بپرسن فقط سه تا دانشجو میتونن تو اتاق استاد باشن و فقط یه دانشجو میتونه از استاد سوال بپرسه زمان سوال پرسیدن هر دانشجو هم به صورت رندوم بین صفر تا دو ثانیه باید طول بکشه من برنامش و نوشتم توی زمان پرسش مشکل دارم که باید بین صفر تا دو ثانیه باشه نمیدونم چه جوری و کجای برنامه و ... باید بذارمش اصلا از چه تابعی باید استفاده کنم!!برنامه یه مشکل دیگه که داره اینه که وقتی برا دانشجوها شماره میذارم خیلی ناجور اجرا میشه!!1
#include <stdlib.h>
#include <pthread.h>
#include <stdio.h>
#include <semaphore.h>
#include <iostream>
using namespace std;
sem_t r,t;
int i;
void *sem(void*);
int main(int argc,char *argv[])
{sem_init(&r,0,3);
sem_init(&t,0,1);
int n=atoi(argv[1]);
pthread_t *threads;
threads=new pthread_t[n];
for(int i=1;i<=n;i++){
pthread_create(&threads[i],NULL,sem,NULL);
}
for(int i=1;i<=n;i++){
pthread_join(threads[i],NULL);
}
return 0;
}
void *sem(void*)
{
cin>>i;
sem_wait(&r);
cout<<"student entered the room:"<<endl;
sem_wait(&t);
cout<<"student asking the quastion:"<<endl;
sem_post(&t);
cout<<"student thanking "<<endl;
sem_post(&r);
cout<<"student exit the room"<<endl;
pthread_exit(0);
}
FastCode
یک شنبه 25 دی 1390, 20:23 عصر
pthread_timedjoin_np
اگر جاییش واضح نیست یک پست دیگه بدید که بیشتر توضیح بدم.
PTHREAD_TRYJOIN_NP(3) Linux Programmer's Manual PTHREAD_TRYJOIN_NP(3)
NAME
pthread_tryjoin_np, pthread_timedjoin_np - try to join with a termi‐
nated thread
SYNOPSIS
#define _GNU_SOURCE /* See feature_test_macros(7) */
#include <pthread.h>
int pthread_tryjoin_np(pthread_t thread, void **retval);
int pthread_timedjoin_np(pthread_t thread, void **retval,
const struct timespec *abstime);
Compile and link with -pthread.
DESCRIPTION
These functions operate in the same way as pthread_join(3), except for
the differences described on this page.
The pthread_tryjoin_np() function performs a nonblocking join with the
thread thread, returning the exit status of the thread in *retval. If
thread has not yet terminated, then instead of blocking, as is done by
pthread_join(3), the call returns an error.
The pthread_timedjoin_np() function performs a join-with-timeout. If
thread has not yet terminated, then the call blocks until a maximum
time, specified in abstime. If the timeout expires before thread ter‐
minates, the call returns an error. The abstime argument is a struc‐
ture of the following form, specifying an absolute time measured since
the Epoch (see time(2)):
struct timespec {
time_t tv_sec; /* seconds */
long tv_nsec; /* nanoseconds */
};
RETURN VALUE
On success, these functions return 0; on error, they return an error
number.
ERRORS
These functions can fail with the same errors as pthread_join(3).
pthread_tryjoin_np() can in addition fail with the following error:
EBUSY thread had not yet terminated at the time of the call.
pthread_timedjoin_np() can in addition fail with the following error:
ETIMEDOUT
The call timed out before thread terminated.
pthread_timedjoin_np() never returns the error EINTR.
VERSIONS
These functions first appeared in glibc in version 2.3.3.
CONFORMING TO
These functions are nonstandard GNU extensions; hence the suffix "_np"
(nonportable) in the names.
EXAMPLE
The following code waits to join for up to 5 seconds:
struct timespec ts;
int s;
...
if (clock_gettime(CLOCK_REALTIME, &ts) == -1) {
/* Handle error */
}
ts.tv_sec += 5;
s = pthread_timedjoin_np(thread, NULL, &ts);
if (s != 0) {
/* Handle error */
}
SEE ALSO
clock_gettime(2), pthread_exit(3), pthread_join(3), pthreads(7)
COLOPHON
This page is part of release 3.32 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
Linux 2010-09-10 PTHREAD_TRYJOIN_NP(3)
zahra.mf
دوشنبه 26 دی 1390, 18:33 عصر
یعنی به جای استفاده از pthread_join باید از این استفاده کنم؟برای مشکل شماره دانشجو هم اگه میشه راهنماییم کنید وقتی کد و به صورت زیر مینویسم تا دانشجوها بر اساس شمارشون بیان هر بار که اجرا میکنم شماره دانشجوها جابه جا میشه درست اجرا نمیشه!
#include <stdlib.h>
#include <pthread.h>
#include <stdio.h>
#include <semaphore.h>
#include <iostream>
using namespace std;
sem_t r,t;
int i;
int j=1;
void *sem(void*);
int main(int argc,char *argv[])
{sem_init(&r,0,3);
sem_init(&t,0,1);
int n=atoi(argv[1]);
pthread_t *threads;
threads=new pthread_t[n];
for(int i=1;i<=n;i++){
pthread_create(&threads[i],NULL,sem,NULL);
}
for(int i=1;i<=n;i++){
pthread_join(threads[i],NULL);
}
return 0;
}
void *sem(void*)
{
//cin>>i;
sem_wait(&r);
cout<<"student "<<j<<" entered the room:"<<endl;
sem_wait(&t);
cout<<"student "<<j<<" asking the quastion:"<<endl;
sem_post(&t);
cout<<"student "<<j<<" thanking "<<endl;
sem_post(&r);
cout<<"student "<<j<<" exit the room"<<endl;
pthread_exit(0);
}
zahra.mf
دوشنبه 26 دی 1390, 22:47 عصر
یه سوال!pthread_timedjoin_npزمان و رندوم انتخاب میکنه؟من اینجوری فهمیدم که threadو 2ثانیه معطل نگه میداره درست فهمیدم؟من میخام زمان حتما رندوم انتخاب بشه
ali6990
چهارشنبه 28 دی 1390, 17:18 عصر
سلام دوست عزیز:لبخند::خجالت:
اگه برنامه ی این پروژه رو نوشتی فایلش رو میفرستی . من خیلی سعی کردم این کدی که نوشتی رو تو لینوکس اجرا کنم ولی نتونستم اگه کدش و توضیح چگونگی استفاده از سمافور رو پست کنی خیلی ممنون میشم.:چشمک::لبخندساده::قلب:
راستش رو بخوای امتحانش رو زیاد جالب ندادم استاد گفت این برنامه رو بنویس پاس میشی یه هفته ای هست دارم روش کار میکنم ولی نشد که نشد:متفکر::افسرده::ناراحت:
فکرکنم دوباره مشروط میشم:گریه::گریه::گریه:
zahra.mf
چهارشنبه 28 دی 1390, 22:13 عصر
سلام
همین برنامه ای که اول گذاشتم و اگه cin>>i رو commentکنی اجرا میشه!!مشکلی نداره!!!من مشکلم تو رندوم انتخاب کردنه زمانه باید تا فردا شب هم تموم کنم:گریه: اگه کمک کنید واقعا ممنون میشم
vBulletin® v4.2.5, Copyright ©2000-1404, Jelsoft Enterprises Ltd.