Changeset aefdccd in mainline for uspace/lib/posix


Ignore:
Timestamp:
2025-10-20T06:14:54Z (5 months ago)
Author:
GitHub <noreply@…>
Parents:
adbd7e1 (diff), 3e41cc4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
boba-buba <120932204+boba-buba@…> (2025-10-20 06:14:54)
git-committer:
GitHub <noreply@…> (2025-10-20 06:14:54)
Message:

Merge branch 'HelenOS:master' into ticket/packet-capture

Location:
uspace/lib/posix
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/include/posix/unistd.h

    radbd7e1 raefdccd  
    11/*
     2 * Copyright (c) 2025 Jiri Svoboda
    23 * Copyright (c) 2011 Jiri Zarevucky
    34 * Copyright (c) 2011 Petr Koupy
     
    164165extern int execv(const char *path, char *const argv[]);
    165166extern int execvp(const char *file, char *const argv[]);
     167extern int execlp(const char *file, const char *arg, ...);
    166168
    167169/* Creating a Pipe */
  • uspace/lib/posix/src/unistd.c

    radbd7e1 raefdccd  
    11/*
     2 * Copyright (c) 2025 Jiri Svoboda
    23 * Copyright (c) 2011 Jiri Zarevucky
    34 * Copyright (c) 2011 Petr Koupy
     
    530531/**
    531532 *
     533 * @param file
     534 * @param argv
     535 * @return
     536 */
     537int execlp(const char *file, const char *arg, ...)
     538{
     539        // TODO: low priority, just a compile-time dependency of dosbox
     540        not_implemented();
     541        return -1;
     542}
     543
     544/**
     545 *
    532546 * @param fildes
    533547 * @return
Note: See TracChangeset for help on using the changeset viewer.