Added a stubbed implementation to list filesystems on FreeBSD.

This commit is contained in:
Adam Murdoch
2014-03-15 13:35:38 +11:00
parent 3b69872d0c
commit 8fabe5b0c4

33
src/main/cpp/freebsd.cpp Normal file
View File

@@ -0,0 +1,33 @@
/*
* Copyright 2014 Adam Murdoch
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* FreeBSD specific functions.
*/
#ifdef __FreeBSD__
#include "native.h"
#include "generic.h"
/*
* File system functions
*/
JNIEXPORT void JNICALL
Java_net_rubygrapefruit_platform_internal_jni_PosixFileSystemFunctions_listFileSystems(JNIEnv *env, jclass target, jobject info, jobject result) {
mark_failed_with_message(env, "not implemented", result);
}
#endif