Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove VMcache client from IRAF #416

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions unix/os/osproto.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ int pr_getipc (int pid, int *inchan, int *outchan);
void pr_release (int pid);
/* zfiobf.c */
int _u_fmode (int mode);
int vm_access (char *fname, int mode);
int vm_delete (char *fname, int force);
int vm_reservespace (long nbytes);
int vm_largefile (long nbytes);
int vm_directio (int fd, int flag);
/* zfioks.c */
void pr_mask (char *str);
/* zpanic.c */
Expand Down
3 changes: 0 additions & 3 deletions unix/os/zfdele.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ ZFDELE (
XINT *status
)
{
extern int vm_delete(char *fname, int force);

vm_delete ((char *)fname, 0);
if (unlink ((char *)fname) == ERR)
*status = XERR;
else
Expand Down
Loading