Lines Matching defs:md
50 MESG *md;
63 if ((md = (MESG *)Malloc(MDSIZE)) == NULL)
66 memset(md, 0, sizeof (MESG));
67 md->admin = 1;
68 md->file = Strdup(path);
69 md->gid = getgid();
70 md->readfd = fds[0];
71 md->state = MDS_IDLE;
72 md->type = MD_MASTER;
73 md->uid = getuid();
75 md->writefd = fds[1];
77 md->writefd = fds[0];
81 return(md);