home *** CD-ROM | disk | FTP | other *** search
- head 1.1;
- access;
- symbols
- version39-41:1.1;
- locks;
- comment @ * @;
-
-
- 1.1
- date 92.05.14.19.55.40; author mwild; state Exp;
- branches;
- next ;
-
-
- desc
- @function controls profiling mode of process
- @
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @#define KERNEL
- #include "ixemul.h"
-
- int
- profil (short *buff, int bufsiz, int offset, int scale)
- {
- u.u_prof.pr_base = buff;
- u.u_prof.pr_size = bufsiz;
- u.u_prof.pr_off = offset;
- u.u_prof.pr_scale = scale;
-
- return 0;
- }
- @
-