Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Parallel Processing ProgramsRSS Feeds

PROGRAM FOR MAX OF ARRAY USING SPIN LOCK

Posted By: Lurleen Fischer     Category: C Programming     Views: 1765

PROGRAM FOR MAX OF ARRAY USING SPIN LOCK.

Code for PROGRAM FOR MAX OF ARRAY USING SPIN LOCK in C Programming

#include<stdio.h>
#include<sys/types.h>
#include<sys/shm.h>
#include<sys/ipc.h>
#include "headsem.h"
#include "headfork.h"

main()
{
    int max,np,a[10];
    int *lock1,*finalmax;
    int id,n,i,sid1,sid2;

    sid1=shmget(IPC_PRIVATE,10,0666|IPC_CREAT);
    lock1=(int *)shmat(sid1,0,0);

    sid2=shmget(IPC_PRIVATE,10,0666|IPC_CREAT);
    finalmax=(int *)shmat(sid2,0,0);

    *finalmax=0;

    printf("Enter the size of array :");
    scanf("%d",&n);

    printf("Enter the array elements :");
    for(i=0;i<n;i++)
        scanf("%d",&a[i]);

    printf("Enter the no.of proc :");
    scanf("%d",&np);

    lock_init(lock1);

    id=p_fork(np);
    max=a[0];
    
    for(i=id;i<n;i+=np)
    {
        if(a[i]>max)
            max=a[i];
    }

    locksem(lock1);

    if(max > *finalmax)
        *finalmax=max;

    unlock(lock1);

    p_join(np,id);
    printf("Maximum of array is : %d",*finalmax);
}
  
Share: 


Didn't find what you were looking for? Find more on PROGRAM FOR MAX OF ARRAY USING SPIN LOCK Or get search suggestion and latest updates.

Lurleen Fischer
Lurleen Fischer author of PROGRAM FOR MAX OF ARRAY USING SPIN LOCK is from Frankfurt, Germany.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!