flock.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* Licensed to the Apache Software Foundation (ASF) under one or more
  2. * contributor license agreements. See the NOTICE file distributed with
  3. * this work for additional information regarding copyright ownership.
  4. * The ASF licenses this file to You under the Apache License, Version 2.0
  5. * (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include <nks/fsio.h>
  17. #include "fspr_arch_file_io.h"
  18. fspr_status_t fspr_file_lock(fspr_file_t *thefile, int type)
  19. {
  20. int fc;
  21. fc = (type & APR_FLOCK_NONBLOCK) ? NX_RANGE_LOCK_TRYLOCK : NX_RANGE_LOCK_CHECK;
  22. if(NXFileRangeLock(thefile->filedes,fc, 0, 0) == -1)
  23. return errno;
  24. return APR_SUCCESS;
  25. }
  26. fspr_status_t fspr_file_unlock(fspr_file_t *thefile)
  27. {
  28. if(NXFileRangeUnlock(thefile->filedes,NX_RANGE_LOCK_CANCEL,0 , 0) == -1)
  29. return errno;
  30. return APR_SUCCESS;
  31. }