Logo 
Search:

C Programming Articles

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

PROGRAM FOR MIN OF ARRAY USING SPIN LOCK

Posted By: Mohammad Evans     Category: C Programming     Views: 2613

PROGRAM FOR MIN OF ARRAY USING SPIN LOCK.

Code for PROGRAM FOR MIN 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 min,np,a[10];
    int *lock1,*finalmin;
    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);
    finalmin=(int *)shmat(sid2,0,0);

//    *finalmin=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);
    min=a[0];
    
    for(i=id;i<n;i+=np)
    {
        if(a[i]<min)
            min=a[i];
    }

    locksem(lock1);
    *finalmin=min;
    if(min < *finalmin)
        *finalmin=min;

    unlock(lock1);

    p_join(np,id);
    printf("minimum : %d",*finalmin);
}
  
Share: 


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

Mohammad Evans
Mohammad Evans author of PROGRAM FOR MIN OF ARRAY USING SPIN LOCK is from London, United Kingdom.
 
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!