Added a stubbed implementation to list filesystems on FreeBSD.
This commit is contained in:
33
src/main/cpp/freebsd.cpp
Normal file
33
src/main/cpp/freebsd.cpp
Normal 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
|
||||
Reference in New Issue
Block a user