Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 745c5f6a authored by Yabin Cui's avatar Yabin Cui
Browse files

kill HAVE_MADVISE

Change to avoid "unused parameter" warning. 

Bug: 18397020
Change-Id: I4b26de55314c78237daead8e873385b97cafe4d4
parent c8ad1809
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -194,9 +194,9 @@ try_again:
}

// Provide guidance to the system.
#if !defined(_WIN32)
int FileMap::advise(MapAdvice advice)
{
#if !defined(_WIN32)
    int cc, sysAdvice;

    switch (advice) {
@@ -214,7 +214,11 @@ int FileMap::advise(MapAdvice advice)
    if (cc != 0)
        ALOGW("madvise(%d) failed: %s\n", sysAdvice, strerror(errno));
    return cc;
}

#else
int FileMap::advise(MapAdvice /* advice */)
{
    return -1;
#endif
}
#endif